-
Posts
2,209 -
Joined
-
Last visited
-
Days Won
47
Content Type
Profiles
Forums
Events
Everything posted by sniko
-
@Script47 - yeah, it's on GitHub Because of life haha - things came up and the scene was dying too much to dedicate any time to it ?
- 30 replies
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
Either Lofi hiphop or Our Last Night
-
Nothing text-based game related anymore - my brother is doing something though with a much newer (albeit still 2015 - the version running VikingEra) version of Panther Engine - @Script47 is owner of the main repository now. Right now, I'm heavily investing my time into the CryptoCurrency scene, working with a super group of individuals over at MyCrypto. I help do security their side and anti-phishing/scamming/malware within the entire ecosystem - partially achieving that with my browser extension and Medium posts.
- 30 replies
-
- 2
-
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
Let's get the nostalgia going some more Either; Post a very old screenshot of something relating to MWG back in the day Type something from memory relating to MWG back in the day I'll start with a dump --------------------------------- The old MWG with my notification hoard Me testing a chat system I built https://imgur.com/deWrbXo Some very old social media posts (not sure why I have this saved) Look how old that chat is with @Magictallguy - fun times! A look back on when I made everything for free just before I left MWG The dump of when I started doing work for shoe on head pictures instead of money, lmao That time when Reece tried to resell @W3Theory || Peter work Aaaand to end it on the release of the game that I never released (but still have backups)?https://imgur.com/02evhHw I've got more harddrives to look through but damn... those were the days ?
-
What are you specifically looking for? A new design for prisonreloaded to be created (mocks/no coding) A new design for prisionreloaded to be created and implemented (mock ups and coded)? The current design for prisonreloaded to be adapted to a mobile layout? Implement a simple grid responsive layout that you can later customise? ...? It might be hard to find someone to do any of those with $100, but please be more specific
-
Maybe with markdown? Basically if I wanna highlight something as code it turns out shit like $global $h; and I don't like ugly posts like this ? https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code-and-syntax-highlighting
-
The nostalgia is real
-
Depends what you need designing. SVG logo or SVG character? Give more details so the right people can contact you.
-
Check the location of the executable php with which php. Alternatively, use wget or curl to fire the cron. Also make sure the code (b9b....763b) matches the one in your config.
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
I rarely come on here anymore... <?php $i = 1; // Assign the value (int) 1 to the variable. echo $i; // Output the value of the variable. echo PHP_EOL . PHP_EOL; $i = 1; // Assign the value (int) 1 to the variable. echo $i + 1; // Output the value of 1+1. echo PHP_EOL . PHP_EOL; $i = 1; // Assign the value (int) 1 to the variable. echo ++$i; // Increment the variable by 1, then output. echo PHP_EOL . PHP_EOL; $i = 1; // Assign the value (int) 1 to the variable. echo $i++; // Output the variable then increment by 1. https://eval.in/708535 Notice how the last output is 1 (when I guess you expect it to be 2), this is because of where the operator (++) is. If you then output $i after this line, the output will be 2.
-
Looking to purchase a few mods and/or game edit.
sniko replied to Andy's topic in Requests & In Production
Username upgrades to text image or colour changed ect. - http://mccodes.com/editmodule.php?id=79 For the rest of the list, you can buy my Saturday for £170. Skype message me (harry.sniko) if you're interested -
Remember to reset the auto_increment value, and truncate "inventory", "user_stats", "*_logs"
-
...You still play it? Wow... Any recent decent updates or has it turned into a microtransaction pay2win POS?
-
Hi :) I've messaged you. If this is getting permission to use the work I've published, permission granted. Everything was released under WTFPL.
-
By using ++$counter, you'll be incrementing the value, then returning the variable. By using $counter++, you'll be returning the variable, then incrementing it. To output the counter, simply do the following in your while() loop. echo $counter++; Unsure what you mean. You need to output the current value of $counter 4 times (ie: 2 2 2 2) or output $counter (irregardless of its value) 4 times during the loop? If you need to output the value of the $counter 4 times (keeping the current value), use a temporary variable in your while loop. while() { echo $current = $counter++; echo $current . PHP_EOL . $current . PHP_EOL . $current . PHP_EOL . $current; //$current will be a static value until the next iteration } https://eval.in/636992 (notice the output starts at 0 and we are using $counter++) https://eval.in/636993 (notice the output starts at 1 and we are using ++$counter) https://eval.in/636995 (using a temporary variable to hold the $counter value)
-
mccode-v1 Automatic total cost calculation in shop buy.
sniko replied to Will's topic in Free Modifications
Why not do something like this: https://jsfiddle.net/zf7rbqaL/ <tr> <td>Item 2</td> <td>$<span id="tc-2" data-cost="400">400</span></td> <td><input type="number" value="1" data-row="2" oninput="var row = this.dataset.row;this.value < 0 ?this.value=0:this.value;document.getElementById('tc-'+row).innerHTML = Number(document.getElementById('tc-'+row).dataset.cost * this.value).toLocaleString()"/><br /><button>Buy</button></td> </tr> (Put the oninput stuff in a function for easier readability, this was a quick hack to show you.) -
I'll do it for £80/hr. Please PM me a further specification, including logic maps and how you'd like things to work. Skype: harry.sniko
-
I voted the post 8/8. Might check the game out and rate that also later today
-
Nice quality post m8 i r8 8/8. For real though, I'd definitely check the game out if you posted more information on it, and perhaps a relevant thread title... you know, for etiquette.
-
MYSQLI/PHP & TIMESTAMPS
sniko replied to boionfire81's topic in MySQL, Oracle, Postgress or other DB
I'm unsure on the question. Can you clarify a little please. Are you asking how to keep things updated to the second? Or the best way to display countdowns? -
Thanks Newttster, you were a pleasure to work with. I hope to continue our working relationship. Aha, yes, I remember that! Good times :)
-
Just run an nmap scan on the server IP and see if there are any ports open. If there is, and you can run shell commands, there is a good chance we *might* be able to check the mysqld service is running, then extracting your database from it. As for the server, go to DigitalOcean, get a VPS (I will help you get set up with it), it's $5usd a month, you manage it yourself, a professional team managing the hardware for you - it'll handle the standard load of a 2016 mccodes game. Hit me up via e-mail if you need any help with anything. I've recently got some more time and I'm looking for work.