Jump to content
MakeWebGames

Zero-Affect

Members
  • Posts

    3,713
  • Joined

  • Last visited

    Never

Everything posted by Zero-Affect

  1. Re: Free 2 - Gym lol wow Nyna is so loved
  2. Re: Advanced Turns[$15] basically its like streets but has extraz and you can use multiple turns and use functions sometimes depending on rand at the end of the turns
  3. Re: Free 2 - Gym Nice richard
  4. Re: Travelling System ($5)/($10) lol very good point actually sorry akash
  5. Name: ZBank Cost: $5.00 USD Includes: 1 php file(ZBank.php) 1 txt file(Installation.txt) Description: Nice little bank mod made in my spare time this bank basically saves space in public_html it banks both money and crystals can be edited to preference easy. but words mean nothing pictures mean so much more check the screen shots. Screen Shots: http://i204.photobucket.com/albums/bb295/zero-affect/ZB1.gif http://i204.photobucket.com/albums/bb295/zero-affect/ZB2.gif http://i204.photobucket.com/albums/bb295/zero-affect/ZB3.gif http://i204.photobucket.com/albums/bb295/zero-affect/ZB4.gif http://i204.photobucket.com/albums/bb295/zero-affect/ZB5.gif http://i204.photobucket.com/albums/bb295/zero-affect/ZB6.gif http://i204.photobucket.com/albums/bb295/zero-affect/ZB7.gif Contact Me: [email protected] [MSN] or mail me on here. This mod is only for v2 you can convert it yourself if you wish.
  6. Re: [MCcode V1.1] New Search/Locate nice one tox
  7. Re: Marriage Script [$10] gotta agree there less mods more space in ftp lol i hate having to many files in ftp, nice mod mate and tox i am not disagreeing with you about the size but also im not agreeing ever mods worth something depends on the coder to work out what.
  8. Re: [Free] TownView ok i don't get this mod my users online does similar thing why waste space just add location in userlist...
  9. Re: Page Tutorials [FREE] why not do it yourself then post it?
  10. Re: [Free] TownView all ima say here is DUH!
  11. Re: Warning when mailing a admin wouldn't $blah=$db->fetch_row($db->query("SELECT * FROM users WHERE userid={$_GET['ID']}")); if($blah['user_level']>1) { echo "You are mailing a admin etc..."; } work...
  12. Re: Advanced Burn House [$15] lol soz boss didn't know that was a rule lol but i was on the wrong one forgot this one was sold out lol
  13. Re: [Free] TownView hey lostone you look kinda weird with that wig on man lol
  14. Re: Advanced Burn House [$15] bump
  15. Re: Need a custom mod made?   ok someone please explain to these people that effect is way different than affect i mean since i have known people they say affect instead of effect which is normally wrong its annoying god get a fucking dictionary.
  16. Re: Av Bank [FREE] yeah sorry about that edited it in i just copied from my day cron lol n posted it quick lol
  17. Re: Av Bank [FREE] yeah i went around afew sites and they had a donator bank n all i could think was... how noobish can you get lol it just wastes sql space
  18. I get bored easy and i recoded bank... just incase yall assume this is the bank just changed please read the full code its alot different i never even looked at bank when i made this its a little more advanced than the actual bank and has i see noobs making a bank just for donators i made this for yaz Open bank.php: delete the content then add this: <?php /*----------------------------------------------------- -- Bank v2 -- Coded by Zero-Affect -----------------------------------------------------*/ include "globals.php"; echo "<h3>Bank</h3>"; switch($_GET['action']) { case 'Withdraw': withdraw(); break; case 'Deposit': deposit(); break; default: index(); break; } if($ir['bankmoney']=='-1') { $cost=20000; if($ir['money']<$cost) { echo "You dont have enough money >[url='index.php']Back[/url]"; $h->endpage(); exit; } $costy=number_format($cost); echo "Congratulation you have bought a bank account for \$$costy >[url='bank.php']Goto Bank[/url]"; $db->query("UPDATE users SET bankmoney=0, money=money-$cost WHERE userid=$userid"); } function index() { global $ir,$c,$userid; echo " <table width=80% class=h border=1><tr><th>Deposit</th><th>Withdraw</th></tr><tr> <td> When depositing money you will have to give the banker his cut of 2% <form action='?action=Deposit' method='post'> Amount: <input type='text' name='dt' value='{$ir['money']}' /> <input type='submit' value='Deposit' /></form></td> <td> When withdrawing money the banker wont take a cut. <form action='?action=Withdraw' method='post'> Amount: <input type='text' name='wd' value='{$ir['bankmoney']}' /> <input type='submit' value='Withdraw' /></form></td></tr></table> <table width=80% border=1 class=h><tr><th>"; if($ir['donatordays']) { echo "Your a donator so you get 4% interest per day."; } else if(!$ir['donatordays']) { echo "Your not a donator so you get 2% interest per day."; } echo "</th></tr></table>"; } function withdraw() { global $ir,$c,$userid,$h,$db; $_POST['wd']=abs((int) $_POST['wd']); $with=number_format($_POST['wd']); $bkmon=number_format($ir['bankmoney']); if($ir['bankmoney']<$_POST['wd']) { echo "You tried withdrawing [b]\$$with[/b] but you only have [b]\$$bkmon[/b]"; $h->endpage(); exit; } $total=number_format($ir['bankmoney']-$_POST['wd']); echo "You successfully withdrew [b]\$$with[/b] You now have [b]\$$total[/b] in your bank. >[url='bank.php']Back[/url]"; $db->query("UPDATE users SET bankmoney=bankmoney-{$_POST['wd']}, money=money+{$_POST['wd']} WHERE userid=$userid"); } function deposit() { global $ir,$c,$userid,$h,$db; $_POST['dt']=abs((int) $_POST['dt']); $dep=number_format($_POST['dt']); $mon=number_format($ir['money']); if($ir['money']<$_POST['dt']) { echo "You tried depositing [b]\$$dep[/b] but you only have [b]\$$mon[/b] >[url='bank.php']Back[/url]"; $h->endpage(); exit; } $blah=$_POST['dt']/50; if($blah>10000) { $blah=10000; } $taken=number_format($blah); $bank=$_POST['dt']-$blah; $banky=number_format($bank); $total=number_format($ir['bankmoney']+$bank); echo "You successfully deposited [b]\$$banky[/b] out of [b]\$$dep[/b] into your bank account The banker toke his [b]\$$taken[/b] cut You now have [b]\$$total[/b] in your bank. >[url='bank.php']Back[/url]"; $db->query("UPDATE users SET bankmoney=bankmoney+$bank, money=money-{$_POST['dt']} WHERE userid=$userid"); } $h->endpage(); ?>   Open cron_day.php: Find: $db->query("UPDATE users SET bankmoney=bankmoney+(bankmoney/50) where bankmoney>0"); Add Below: $db->query("UPDATE users SET bankmoney=bankmoney+(bankmoney/50) where bankmoney>0 and donatordays>0");   I posted this since i ain't posted anything free in awhile. please leave comments.
  19. Re: Free Starter Pack yeah mine supposed to load on every page thats the point it only ever loads the give script once though ;) read it... and that would be effective since when they login... or even better add it in the loggedin page
  20. Re: Merge Item's [V2] i think she means basically when u get/buy another item it auto add's has another on the one you have originally
  21. Re: Count Users Clicks nice idea mate
  22. Re: News Paper Ads no sql i don't use newpapper but nice idea
  23. Re: New Crime Page [V2] nice one mate:P
  24. Re: Free Starter Pack good point but they want it to do it after they actually sign in and move... so others can't just steal it from the inactives i believe i would say register also mate
  25. Re: Free Starter Pack why do this when you can just add it in globals if(!$ir['daysold'] && !$ir['Kit']) { $mon=1000; $cry=200; $dd=5; $mony=number_format($mon); $cryl=number_format($cryl); event_add($userid,"You claimed your newbie kit, which contained: \${$mony} {$cryl} Crystals & {$dd} Donator Days",$c); $db->query("UPDATE users SET money=money+{$mon}, crystals=crystals+{$cry}, donatordays=donatordays+{$dd}, Kit=1 WHERE userid=$userid"); } then simply add a new row in users table called "Kit": ALTER TABLE `users` ADD `Kit` INT(11) NOT NULL DEFAULT '0';
×
×
  • Create New...