Jump to content
MakeWebGames

Zan

Members
  • Posts

    124
  • Joined

  • Last visited

Everything posted by Zan

  1. That could work :thumbsup:
  2. This is a simple Jail successfull busts and failed Busts First of all SQLS [mysql]ALTER TABLE `users` ADD `bustdone` int(11) NOT NULL ; ALTER TABLE `users` ADD `bustfailed` int(11) NOT NULL ;[/mysql]   Open Up jailbust.php, Find $db->query("UPDATE users SET crimexp=crimexp+{$gain} WHERE userid=$userid"); Under It add mysql_query("UPDATE users SET bustdone=bustdone+1 WHERE userid=$userid",$c); Then Find $db->query("UPDATE users SET jail=$time, jail_reason='Caught trying to bust out {$r['username']}' WHERE userid=$userid"); Under it add mysql_query("UPDATE users SET bustfailed=bustfailed+1 WHERE userid=$userid",$c); Add it anywhere u want   Success Busts: {$ir['bustdone']} Failed Busts: {$ir['bustfailed']}   Hope yu all like it
  3. Can some one post this entire working copy of this plzz? ;)
  4. i dnt think so
  5. Zan

    deleted

    Can someone post where exactly we should add that rasheeds img code?
  6. I was trying to post this in hospital java count but when itried it said Attention: The last reply to this post was 441 days ago. The thread may already be out of date. Please consider creating a new thread. So didnt want to break the rules open Jail.php and Find {$r['jail']} minutes   Replace with <html> <body> <div id='{$r['userid']}'></div> <div id='notifier'></div> <script type='text/javascript'> (function () { function display( notifier, str ) { document.getElementById(notifier).innerHTML = str; } function toMinuteAndSecond( x ) { return Math.floor(x/60) + ':' + (x%60<10?'0':'')+x%60; } function setTimer( remain, actions ) { var action; (function countdown() { display('{$r['userid']}', toMinuteAndSecond(remain)); if (action = actions[remain]) { action(); } if (remain > 0) { remain -= 1; setTimeout(arguments.callee, 1000); } })(); // End countdown } setTimer({$r['jail']}*60, { }); })(); </script> </body> </html> minutes   :)..This is just for people who doesnt know..Just a conversion..:)
  7. Fixed
  8. Its secured...it has the fuction of bbcode
  9. My game aint released yet....so dnt wanna tell..but i added this file...and payed to secure the entire game..so probably this might be secured
  10. This is my first paid mod ..so dnt know a price wage..someone tel me ? :P Its secured the tags are secured
  11. This is a complete fully Working mod...It has been tested 2-3 times... 25$ For this This mod is completely made by me ..no credit to others. Screenies If intrested message me..i will give u my MSN then we will have the DEAL :P
  12. Never Mind...Its working.. AND FOUND A BUG When we train our money...Like When we click train and take anything for example..If i click Train Power..The energy goes to Zero...then if i continously click for 1-10 times as how much i click from 1- 10 times , it increases automatically..1 click 1 enrgy + 1 more clcik another energy...can fix this?
  13. The Energy aint going up even after adding cron fivemins...can someone fix this?? :rolleyes: Thanks :D ;)
  14. <?php include "globals.php"; switch($_GET['step']) { case 'index': casino_index(); break; default: casino_index(); break; } function casino_index() { global $db,$ir,$c,$userid,$h; $tresder = (int) (rand(100,999)); echo "<table><tr><td><center> Welcome to the __________ casino. Take a look around and see if there is anything you would like to play. You have {$ir['casinotokens']} casino tokens. [url='slotsmachine.php?']> Slots[/url] [url='arcade.php']> Arcade[/url] [url='lucky.php']> Lucky Boxes[/url] [url='slots.php']> 7's and Stripes Slots[/url] [url='roulette.php']> Roulette[/url]</td> </tr></table>"; } $h->endpage(); ?>   Here is my casino..i want people to be able to enter this page only when they are level 5
  15. Is there a way in which i can change the table color?My game colour is black ,so white aint fitting ..i need greyying..Dark grey...... heres my table   <center> <table width=95% border=1 hight=60% cellspacing=0 class='table'></center> <tr style='background:black'><th><font color=red>{$ir['username']}<font color=black>'s Profile Page</th></tr> </table> ";
  16. i used   if ($ir['level'] < 5) { echo 'Level 5+ please.'; exit; }   But now even if the player is above lvl 5 it shows lvl 5 please
  17. None of this codes are working? please help
  18. allthe things in the table works?
  19. wat is this? Please someone help me in this
  20. sql aint working and in realestate.php Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/damagedc/public_html/real_estate.php on line 32 Sql is not working and in real estate.php
  21. Oh ..but now even if the player is above level 5 it says level 5 please...why?
  22. So..Ok here is is..a Mission main page where person can start or do anything..and a admin fuction admin can create missions
  23. thanks ilva and rasheed..appreciate it ;)
  24. :rolleyes: Can i get the entire code pleas e?
  25. Can someone post the full working code in which if anyone below that level eners itsays noly level5 above aloud
×
×
  • Create New...