(((TOLK)))
Members-
Posts
179 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by (((TOLK)))
-
Re: [mccode v2] Crystalbank Mod I think Wickidnezz has something real bad against MTG, I think it's Jelousy ;)
-
Re: What would you do with $100,000,000? Everyone, send money to menice, were gonna partyyyyyyyyy!!!!!!!
-
Re: Never Ending Story You've ended the story!!!!! Luckily, Hazel Nutt, went all the way to Japan to go fishing in the Pacific Ocean. She then married Justin Case who had also been on holiday in Japan and got married. They had babies and the population grew back. The names of the children were...(someone, posts some more names!)
-
Re: FIRST THOUGH! prostitute (first thing that cam to mind...)
-
Re: Never Ending Story Smart E. Pants also invested in Polly Ester's party plates company
-
Re: What would you do with $100,000,000? And then with that money, I'd hire you lol
-
Re: [mccodes V2] Nuclear Bomb Just add some code into the crystal temple. If you can't do this and no1 tells you how to then I'll post it at about 2pm GMT tomorrow coz I can't be bothered right now
-
Re: What would you do with $100,000,000? Who pays for money :? Everyone does. If you go to a foreign exchange you are infact paying for money. :lol: LOL Investments are quite bad right now, alot of people have lost alot of money but it should steadily rise
-
Re: Skull City These are the stats right now, Total Cash: $43,470,932 Average Cash: $158,653 Cash in banks: $115,600,021,167 Bank accounts: 253 Average bank balance: $456,917,079 Total Crystals: 55,875 Average Crystals: 203 I don't think that they're too bad TBH, I like my game to be high in economics but prices of things have rised now
-
Re: What would you do with $100,000,000? Who pays for money :?
-
Re: Skull City What do you suggest I do to improve on whatever you thought was rubbish Well, reset your game make it harder for everyone (includeing you), no cheating. Make it harder to level up, get money, ect... I just had a reset lmao Thats not even funny.. Thats quite pathetic Was that supposed to be funny, coz it was pathetic
-
Re: Skull City What do you suggest I do to improve on whatever you thought was rubbish Well, reset your game make it harder for everyone (includeing you), no cheating. Make it harder to level up, get money, ect... I just had a reset lmao
-
Re: [mccodes V2] Nuclear Bomb Thanks for the edits! I'm probably gonna make a cron_week.php and add something so a random user gets a bomb
-
Re: Skull City What do you suggest I do to improve on whatever you thought was rubbish
-
Hi people, could you tell me what you think of my game, what needs changing? http://www.skull-city.ej.am/login.php Thanks
-
Re: What would you do with $100,000,000? There's alot of stuff I'd do with it but I'm not sure if it's even legal to post. I'd get the veyron too, get a big house. Get a house for my parents. Buy a Mercedes-Benz garage, I don't know It'd just be great.
-
This is a simple mod in which a user can detinate a nuclear bomb to hospitalise every other user in the game. They will recieve two levels when they do this. These bombs should be rare and hard to find but it's upto you what you give your users nuclearbombs for. You can change the levelling up if you wish :) Run this SQL: ALTER TABLE `users` ADD `bomb` INT( 11 ) NOT NULL DEFAULT '0' Create A file called nuclearbomb.php Add into it: <?php include "globals.php"; if ($ir['bomb'] < 1) { die ("You ain't got a bomb!"); } print "You have detonated the bomb, everyone have been hospitalized and you gained two levels"; $db->query("UPDATE users SET level=level+2 WHERE userid=$userid"); $db->query("UPDATE users SET hospital=100 WHERE userid != $userid"); $db->query("UPDATE users SET hospreason='ID <a href=viewuser.php?u=$userid>$userid</a> Detonated a Nuclear Bomb' WHERE userid != $userid"); $db->query("UPDATE users SET bomb=bomb-1 WHERE userid=$userid"); ?> Finally, add this to header.php if ($ir['bomb'] > 0) { print "<font color=red>You have a nuclear bomb, [url='nuclearbomb.php']click here[/url] to use it</font>"; } Please comment on what you think of it :)
-
When I get a problem I persevere and usually find a solution, but I'm not sure what's wrong here :? When a users tries to create a gang they recieve this error message QUERY ERROR: Column count doesn't match value count at row 1 Query was INSERT INTO gangs VALUES('','ThE GaNgStErZ','join if ur invited','','',0,0,100,60,60,5,0,0,'') Anyone know how to fix this :?
-
[mccodes V2]Personal Status Mod[mccodes V2]
(((TOLK))) replied to (((TOLK)))'s topic in Free Modifications
Re: [mccodes V2]Personal Status Mod[mccodes V2] What difference does it make if it's one function :S You've made it more secure though ;) -
Re: Looking for a Referal Mod ... Nejis 100% works as long as you follow the instructions. But on his post he did one thing wrong. In the last large chunk of code, add before not after ;)
-
[mccodes V2]Personal Status Mod[mccodes V2]
(((TOLK))) replied to (((TOLK)))'s topic in Free Modifications
Re: [mccodes V2]Personal Status Mod[mccodes V2] Lmco, lol yeah i'm still a newbie coder. The limit's a good idea thanks :) -
[mccodes V2]Personal Status Mod[mccodes V2]
(((TOLK))) replied to (((TOLK)))'s topic in Free Modifications
Re: [mccodes V2]Personal Status Mod[mccodes V2] Are there? I seriously didn't know. I haven't copied any of them if that's what you thought. I coded it all by myself. I should've used the 'search' button. -
This is a pretty simple mod. It allows users to have a personal status message on their profile, kinda like on IMs. Run this SQL: ALTER TABLE `users` ADD `sm` VARCHAR( 255 ) NOT NULL DEFAULT 'No Message'; Ope viewuser.php Find: Duties: {$r['duties']} Add Under it: <font color=#00FF00>Status Message: {$r['sm']}</font> Now open preferences.php Find case 'picchange2': do_pic_change(); break; case 'picchange': pic_change(); break; Add under it: case 'smchange2': do_sm_change(); break; case 'smchange': sm_change(); break; In the same file Find: $h->endpage(); ?> Add Above it: function sm_change() { global $ir,$c,$userid,$h; print "<h3>Status Message Change Change</h3> Here, you can change your status message that will be shown on your profile. <form action='preferences.php?action=smchange2' method='post'> Status Message: <input type='text' name='sm' /> <input type='submit' value='Change Status Message' /></form>"; } function do_sm_change() { global $db,$ir,$c,$userid,$h; if($_POST['sm'] == "") { print "You did not enter a new status message. [url='preferences.php?action=smchange']> Back[/url]"; } else { $_POST['sm']=str_replace(array("<", ">", "\\\'"), array("<", ">", "'"), $_POST['sm']); $db->query("UPDATE users SET sm='{$_POST['sm']}' WHERE userid=$userid"); print "Status Message Changed!"; } } Again in the same file Find: [url='preferences.php?action=sexchange']Sex Change[/url] Add under it: [url='preferences.php?action=smchange']Status Message Change[/url] Tell me what you think :D
-
Need an Mccodes hall of fame of referrals
(((TOLK))) replied to (((TOLK)))'s topic in General Discussion
Re: Need an Mccodes hall of fame of referrals I didn't add the cases and stuff, view this post and Neji Hyuuga has posted it fully http://criminalexistence.com/ceforums/h ... 60#p133360 -
Does anyone here know how to prevent the admin hack sql injection. It's been used on my site once but luckily the guy who did it was OK and he didn't do anything to my game. So has anyone got the prevention to this. The admin hack allows users to become admins.