-
Posts
3,713 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Zero-Affect
-
Re: [mccode v2] User Shops [$35.00] yeah it's running on http://www.killah-city.net i also give 1 year free support free :-) I'm sure...
-
[mccode] AV Bounty/Hitmanlist [$20.00]
Zero-Affect replied to Zero-Affect's topic in Paid Modifications
Re: [mccode] AV Bounty/Hitmanlist [$20.00] 5 copies left -
Re: [mccode v2] Crystal Temple you don't offer support? bad choice, shame on you lol
-
[mccode] Diamond gems, with a Diamondtemple.php for v2.0
Zero-Affect replied to MDK666's topic in Free Modifications
Re: [mccode] Diamond gems, with a Diamondtemple.php for v2.0 That's not very nice im sure he had to spell out Diamonds and Crystals first :-D -
Re: [mccode V2] Header [$20.00] New Joel if you let him sell this then why post how much you sold it to him for, t!t. David & Mini you two need a room... Nice try Asim, Strats im sure it needs editing alot for a wrestling game, what is the game?
-
Re: [mccodes]Secure demo account great minds i guess mate
-
Re: 3 Word Game hes pregnant with... // some of you have some sick thoughts...
-
Re: [?5]Login & Register[v1+v2] no examples and you say you have not designed in awhile, sounds rather fishy to me
-
Re: [mccodes]Secure demo account b*tch lol
-
[Mccodes V2] Age + Age restriction on buying items
Zero-Affect replied to a topic in Free Modifications
Re: [Mccodes V2] Age + Age restriction on buying items whats the age restriction on buying a gun... lmao -
Add, Edit, Delete House Upgrades from Staff Panel
Zero-Affect replied to Becon's topic in Free Modifications
Re: Add, Edit, Delete House Upgrades from Staff Panel then u buy the house before getting married then marry lmao -
Re: [mccodes]Secure demo account before anyone comments i noticed a minor issue with the script replace: $links_available = array('/preferences.php', '/staff.php', '/jailuser.php', 'mailban.php'); // obviously add more. with: $links_available = array('/preferences.php', '/staff.php', '/jailuser.php', '/mailban.php'); // obviously add more. on the second solution
-
Re: Count Backwards :D 999,999,999,995
-
Add, Edit, Delete House Upgrades from Staff Panel
Zero-Affect replied to Becon's topic in Free Modifications
Re: Add, Edit, Delete House Upgrades from Staff Panel like i said personal preference not FACT because it's not technically been proven. -
Re: [mccode v2] Secure Bank! lol i use something like that Karlos killtext function lol
-
Add, Edit, Delete House Upgrades from Staff Panel
Zero-Affect replied to Becon's topic in Free Modifications
Re: Add, Edit, Delete House Upgrades from Staff Panel well that's your personal preference -
Re: [mccode v2] Gift.php [edited] ^ you can't really talk the coding below is horrid i wouldn't consider that a 4am on acid lol one word for you mate optimize. Stop picking on noobs because karma is a b!tch IE: $db->query("UPDATE users SET money=money+2000 WHERE userid=$userid", $c); $db->query("UPDATE users set gift=gift+1 WHERE userid={$ir['userid']}", $c); $db->query("UPDATE users SET crystals=crystals+14 WHERE userid=$userid", $c); $db->query("UPDATE `users` SET `money` = `money` + 2000, `crystals` = `crystals` + 14 WHERE `userid` = $userid"); $db->query("UPDATE `users` SET `gift` = `gift` + 1 WHERE `userid` = {$ir['userid']}"); there is a much easier way but would need to recode the lot lol but my times precious :-o
-
Re: 3 Word Game Later that day...
-
Add, Edit, Delete House Upgrades from Staff Panel
Zero-Affect replied to Becon's topic in Free Modifications
Re: Add, Edit, Delete House Upgrades from Staff Panel amazing how you have that query i believe floydian sells a shared house modification if not mccodes may, you know the place you bought your MC from lol -
[mccodes] Hospital + Revive Option
Zero-Affect replied to BreakingLight's topic in Free Modifications
Re: [mccodes] Hospital + Revive Option i've seen alot worse :-D -
Re: [mccode v2] workin cyberbank Brilliant once again Karlos, TIP('don\'t spend too long making the code look pretty')
-
Re: [mccodes]Secure demo account your going to add if ($ir['userid'] == 80) { echo "The demo account isnt alloud to this. [url='index.php']Back Home[/url]"; $h->endpage(); exit; } in all files... give me a min ill code something up which may help in header.php: $demo = 0; // add demo account id here - 0 is generic and won't work till a number is added if ( $userid == $demo ) { $links_available = array('/loggedin.php', '/index.php'); // obviously add more. if ( !in_array($_SERVER['SCRIPT_NAME'], $links_available) ) { echo "Demo accounts actions are limited."; // may wanna add more to this exit; } } I added this below mainmenu include on my header but if adding higher don't forget this: > [url='index.php']Home[/url] in the echo ""; another solution could be // Demo blocker start: $demo = 0; // add demo account id here if ( $userid == $demo ) { $links_available = array('/preferences.php', '/staff.php', '/jailuser.php', '/mailban.php'); // obviously add more. if ( in_array($_SERVER['SCRIPT_NAME'], $links_available) ) { echo "Demo accounts actions are limited."; exit; } } // Demo blocker end; with same adds etc...
-
Add, Edit, Delete House Upgrades from Staff Panel
Zero-Affect replied to Becon's topic in Free Modifications
Re: Add, Edit, Delete House Upgrades from Staff Panel that mods older than most the people on here lol translation you want a paid mod free, right? (I'm assuming shared house is a paid mod) -
[mccodes] Hospital + Revive Option
Zero-Affect replied to BreakingLight's topic in Free Modifications
Re: [mccodes] Hospital + Revive Option nice needs afew edits though die * not good specially when only counting two places... Good job anyways -
mccode-v2 sendcash.php / Same IP Stop
Zero-Affect replied to AlabamaHit's topic in Free Modifications
Re: [mccodes v2] sendcash.php / Same IP Stop i actually think Kyles right Alabama should it not be something like $ch = $db->fetch_row($db->query('SELECT COUNT(`lastip`) AS usr_ip_count FROM `users` WHERE userid = '.$_GET['ID'].' AND lastip = '.$ir['lastip'].'')); if( $ch['usr_ip_count'] ) { echo " Invalid Action You cannot send anything to a alternative account with the same internet protocal. > <a href=\"index.php\">Go Home</a> "; } elseif ( !$ch['usr_ip_count'] ) { // do nothing but here if you need it } was kinda bored hope it helps, if not hit me up and ill help anyone puzzled.