Jump to content
MakeWebGames

Isomerizer

Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Isomerizer

  1. Re: Why is one of my domains estimated so high?   Hmmmm must be all down to the name then.... Wonder if i could get anything near the estimated price for it. $1,010 would be great :lol:
  2. The estimated value of http://you-cheat.com is: $1,010 How can this be possible, the site it self only has like 71 members and only a few active. Glitch in site? Taken from http://www.dnscoop.com/ <-- all my other domains are $30-$100 Why is this one so high? (The estimated value of http://criminalexistence.com is: $1,627) Has anyone got any other more accurate site domain estimators?
  3. Hey, This is a very simple help mod, Its a robot that will reply to the key words of the games, The variables are there so you can change them to suit your game, Its very easy to add new questions / key words with reply's. Like i said the script is easy to add onto, but i didnt list too many key words. It will help users learn how to play the game. (Update: The bot now records questions asked.) Enjoy.... Create a new page called bot.php with the code:   <?php /*----------------------------------------------------- -- Isomerizer Copright 2007. -- Help Bot (Free Mod) -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); // CONFIGURATION \\ // Use || to add multiple words \\ // $question is the question asked, and the $answerq is the reply \\ $question=strtolower(mysql_real_escape_string($_POST['question'])); $ask=" Question: "; $answer="Answer "; print "Help Bot"; print "(The help bot can help you with various things, Type in the keyword to see if it can help....) [i]*Typing in lower can will help more*[/i] "; if ($question=="") { print $ask; exit; } else { //The stat variables can be changed to suit your game \\ $strenght="might"; $agility="stealth"; $force="defence"; $labour="force"; $energy="power"; $nerve="bottle"; $education="college"; $exlore="jungle"; $gang="tribe"; $game="Amazon Survival"; if ($question=="help") { $answerq="What do you need help with?"; } if ($question=="hello"||$question=="helo"||$question=="hi"||$question=="hey") { $answerq="Hello how are you?"; } if ($question=="good") { $answerq="Im glad to hear your good."; } if ($question=="$strenght") { $answerq="This stat is used to calculate how much damage a weapon does."; } if ($question=="$agility") { $answerq="This stat is used for dodging attacks."; } if ($question=="$force") { $answerq="This stat is used to calculate how much damage is done to you."; } if ($question=="$labour") { $answerq="This stat is used for getting promoted in jobs."; } if ($question=="$IQ") { $answerq="This stat is stat is gained from courses and used for promotions."; } if ($question=="crystals") { $answerq="Crystals are used for various things under Crystal Temple"; } if ($question=="cash") { $answerq="Cash is used to buy stuff all over the game"; } if ($question==$energy) { $answerq="This is used mainly for training and attacking"; } if ($question==$nerve) { $answerq="This is used for doing crimes"; } if ($question=="health") { $answerq="How much health you have in a fight"; } if ($question=="skill") { $answerq="Skill is used for mining"; } if ($question=="mine") { $answerq="Mining a great way to earn crystals"; } if ($question=="job") { $answerq="Nice way to earn cash and stats"; } if ($question=="garage") { $answerq="Where you keep your cars"; } if ($question=="$education") { $answerq="Used for gaining $IQ"; } if ($question=="mail") { $answerq="Your own personal mail system"; } if ($question=="events") { $answerq="What happens to you is recorded here"; } if ($question=="logout") { $answerq="Used to logout of the game, duh."; } if ($question=="$explore") { $answerq="Where the main links are listed"; } if ($question=="search") { $answerq="Search for other players!"; } if ($question=="friend list") { $answerq="Record your friends"; } if ($question=="black list") { $answerq="Record your enemys"; } if ($question=="$gang") { $answerq="Used for varios things, make friends, war etc, Join a $gang!"; } if ($question=="forums") { $answerq="Discuss various topics"; } if ($question=="preferences") { $answerq="Used to change your account around"; } if ($question=="donate") { $answerq="Donate to the game and be awared donator features"; } if ($question=="vote") { $answerq="Voting earns you stats and it helps the game grow"; } if ($question=="item"||$question=="items") { $answerq="Items are a main part of the game and used for doing lots of things"; } if ($question=="church") { $answerq="Used for getting married"; } if ($question=="stats") { $answerq="Stats are what determines your account and how good you are"; } if ($question=="travel") { $answerq="Travel around the game"; } if ($question=="casino") { $answerq="Casino, play various games earning you some cash"; } if ($question=="quests") { $answerq="Quests do varios tasks to earn rewards"; } if ($question=="banned") { $answerq="Users banned are listed in dungeon"; } if ($question=="war") { $answerq="War is when 2 $gang 's fight each other"; } if ($question=="staff") { $answerq="Main staff can be listed under Staff, ID 1 is the overall owner"; } if ($question=="prison") { $answerq="Sent here when failing crimes"; } if ($question=="hospital"||$question=="hosp") { $answerq="Sent here when attacked"; } if ($question=="noob"||$question=="n00b") { $answerq="Who you calling a noob?"; } if ($question=="fuck"||$question=="shit"||$question=="prick"||$question=="cunt"||$question=="bitch") { $answerq="Please do not swear"; } if ($question=="robot"||$question=="bot") { $answerq="Who you calling a bot!"; } if ($question=="who are you") { $answerq="I am the $game Bot"; } if ($question=="isomerizer") { $answerq="The elite one"; } print "[i]You asked the Bot:[/i] $question"; print " "; print "[i]The Bot replied:"; if ($answerq=="") { print " Sorry, I dont know the answer"; mysql_query("INSERT INTO `bot` ( `ID` , `submitted` , `question` ) VALUES ( LCASE( NULL ) , '$userid', '$question')"); } print " [/i] "; print $answerq; print $ask; print " Spamming the Bot will lead to a perm ban"; exit; } print ""; $h->endpage(); ?>   Find under explore.php   [url='usersonline.php']Users Online[/url]   Then under add:   [url='bot.php']Help Bot[/url]   SQL:   CREATE TABLE `bot` ( `ID` INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY , `submitted` INT( 11 ) NOT NULL , `question` VARCHAR( 25 ) NOT NULL ) ENGINE = MYISAM ;   Can be seen working @ http://amazon-survival.com
  4. Re: IRC Guide   I would of happily made one about 8 - 10 months ago, But i rarely irc script now and have forgot almost all of it. :cry:
  5. Re: harry potter   Lmao i doubt he will, But it would be funny :evil:
  6. Re: [mccode] Advanced Warning System Thanks silver baby works like a charm +1
  7. Re: [FREE]Music system Nice mod runs fine. Was thinking about adding on a few options give users to pick what radio station / website they can listen to, atm its hip hop, might add a few rock sites etc. +1
  8. Re: 3 Word Game current sexuality so...
  9. Isomerizer

    HELP

    Re: HELP   Ask the orignal game owner for the SQL file then...
  10. Re: 3 Word Game balls of lamb? :-)
  11. Re: 3 Word Game munching on massive
  12. Re: Which File Extension are You? ^^ Wth :oops:
  13. Jail mod for V1. Good for lite too. Made it slowly over last few days , found a few bugs think there all fixed. UPDATED - Not so simple now.   Prison.php: <?php /*----------------------------------------------------- -- Jail Mod -- Copyright held 2007-2008 by Isomerizer.com (Free) -- prison.php -----------------------------------------------------*/ require("globals.php"); switch($_GET['action']) { case 'escape': escape(); break; } if (isset($_GET['action']) && $_GET['action']!="escape") { echo 'Prison Error'; $h->endpage(); exit; } $bail=abs(@intval(clean($_GET['bail']))); $bust=abs(@intval(clean($_GET['bust']))); if (empty($bail) && empty($bust) && empty($_GET['action'])) { echo 'The Local Prison'; if ($ir['prison']!=0) { echo '[url="prison.php?action=escape"][Attempt to escape][/url] '; } echo '</pre> <table width="85%" border="2">IDName Rank TimeReasonOptions'.$r['userid'].''.$r['gangPREFIX'].' [url="viewuser.php?u='.$r['userid'].'"]'.$r['username'].'[/url] ['.$r['userid'].'] '.$r['level'].''.$r['prison'].' minutes'.$r['prisonreason'].'[url="prison.php?bust='.$r['userid'].'"]Bust[/url] | [url="prison.php?bail='.$r['userid'].'"]Bail [i](\$'.$fee.')[/i][/url] </table>';<br>}<br><br>if ($bust!="")<br>{<br>if ($ir['energy']<1) { echo 'You need 7 power to bust!<br>[url="prison.php"]Back[/url]'; $h->endpage(); exit; }<br>if ($bust==$userid) { echo 'You cannot bust yourself out!<br>[url="prison.php"]Back[/url]'; $h->endpage(); exit; }<br>$bustlvl=$ir['bustlvl'];<br>$randd=rand(1,250);<br>$rand=$randd*$bustlvl-10;<br>$lvllrand=rand(1,50);<br>$lvlrand=$lvllrand*$bustlvl-5;<br><br>if ($rand<=200) <br>{<br>$bust=abs(@intval(clean($_GET['bust'])));<br>$eeeeee=mysql_query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.prison > 0 AND userid=$bust ORDER BY u.prison DESC",$c);<br>while($eee=mysql_fetch_array($eeeeee))<br>{<br>$busterr=$eee['userid'];<br>$bustooo=$eee['username'];<br>if ($ir['hospital']!="0") { echo "You cannot bust out while in Hospital!"; exit; }<br>if ($ir['prison']!="0") { echo "You cannot bust out while in Prison!"; exit; }<br>echo 'You were caught trying to bust '.$bustooo.' out of prison and thrown in prison yourself!';<br>mysql_query("UPDATE users SET energy=energy-1 WHERE userid=$userid", $c);<br>event_add($busterr, "<a href="viewuser.php?u=%7B%24ir%5B'userid'%5D%7D" rel="">{$ir['username']}</a> was caught trying to bust you out!", $c);<br>mysql_query("UPDATE users SET prison='100' WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET totalprison=totalprison+1 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prisonreason='Attempting to bust $bustooo out of prison' WHERE userid=$userid", $c);<br>$h->endpage();<br>exit;<br>} <br>}<br>if ($rand>200 && $lvlrand<10) <br>{<br>$bust=abs(@intval(clean($_GET['bust'])));<br>$e=mysql_query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.prison > 0 AND userid=$bust ORDER BY u.prison DESC",$c);<br>while($eee=mysql_fetch_array($e))<br>{<br>$bustingg=$eee['userid'];<br>$bustingge=$eee['username'];<br>if ($ir['hospital']!="0") { echo 'You cannot bust out while in Hospital!'; $h->endpage(); exit; }<br>if ($ir['prison']!="0") { echo 'You cannot bust out while in Prison!'; $h->endpage(); exit; }<br>echo "You Busted $bustingge out of prison!<br>And your bust level went up!";<br>mysql_query("UPDATE users SET bustlvl=bustlvl+1 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET energy=energy-1 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET totalbust=totalbust+1 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prison=0 WHERE userid=$bustingg", $c); <br>event_add($bustingg, "<a href="viewuser.php?u=%7B%24ir%5B'userid'%5D%7D" rel="">{$ir['username']}</a> busted you out of prison!", $c);<br>$h->endpage();<br>exit; <br>}<br>}<br>if ($rand>200) <br>{ <br>$bust=abs(@intval(clean($_GET['bust'])));<br>$e=mysql_query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.prison > 0 AND userid=$bust ORDER BY u.prison DESC",$c);<br>while($ee=mysql_fetch_array($e))<br>{<br>$busting=$ee['userid'];<br>$busto=$ee['username'];<br>if ($ir['hospital']!="0") { echo 'You cannot bust out while in Hospital!'; $h->endpage(); exit; }<br>if ($ir['prison']!="0") { echo 'You cannot bust out while in Prison!'; $h->endpage(); exit; }<br>echo 'You Busted '.$busto.' out of prison!'; <br>mysql_query("UPDATE users SET totalbust=totalbust+1 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET energy=energy-1 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prison=0 WHERE userid=$busting", $c); <br>event_add($busting, "<a href="viewuser.php?u=%7B%24ir%5B'userid'%5D%7D" rel="">{$ir['username']}</a> busted you out of prison!", $c);<br>$h->endpage();<br>exit; <br>}<br>}<br>}<br><br>if (!empty($_GET['bail']))<br>{<br>$bust=abs(@intval($_GET['bail']));<br>$eeee=mysql_query("SELECT * FROM users WHERE prison > 0 AND userid=$bust",$c);<br>while($eeeee=mysql_fetch_array($eeee))<br>{<br>$bustingee=$eeeee['userid'];<br>$bustee=$eeeee['username'];<br>$time=$eeeee['prison'];<br>$price=$time*10;<br>if ($bustingee==$userid) { echo 'You cannot bail yourself out!'; $h->endpage(); exit; }<br>if ($ir['money']<$price) { echo 'You dont have that sort of cash'; $h->endpage(); exit; }<br>if ($ir['hospital']!="0") { echo 'You cannot bail out while in Hospital!'; $h->endpage(); exit; }<br>if ($ir['prison']!="0") { echo 'You cannot bail out while in Prison!'; $h->endpage(); exit; }<br>echo 'You payed $'.$price.' to bail '.$bustee.' out of prison!';<br>mysql_query("UPDATE users SET money=money-$price WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prison=0 WHERE userid=$bustingee", $c);<br>$h->endpage();<br>exit;<br>}<br>}<br><br>function escape()<br>{<br>global $ir,$c,$userid,$h;<br>if ($ir['prison']==0) { echo 'Your not even in prison!'; $h->endpage(); exit; }<br><br>$rand=rand(1,400);<br>$randd=$rand*$ir['bustlvl']/$ir['prison'];<br><br>if ($ir['energy']<5) { echo 'It cost 35 power to attempt to escape'; $h->endpage(); exit; }<br><br>if ($randd>150)<br>{<br>echo 'You escaped from prison!';<br>mysql_query("UPDATE users SET energy=energy-5 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prison='0' WHERE userid=$userid", $c);<br>$h->endpage();<br>exit;<br>}<br>if ($randd<=150)<br>{<br>echo 'You were caught trying to escape and sent back for longer';<br>mysql_query("UPDATE users SET energy=energy-5 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prison=prison+100 WHERE userid=$userid", $c);<br>mysql_query("UPDATE users SET prisonreason='Trying to escape from Prison' WHERE userid=$userid", $c);<br>$h->endpage();<br>exit;<br>}<br>}<br><br>$h->endpage();<br>?><b   Cron, Open hospital cron and stick this code in there:   mysql_query("UPDATE users set prison=prison-1 WHERE prison>0",$c);   SQL: ALTER TABLE `users` ADD `bustlvl` INT( 11 ) NOT NULL , ADD `prison` INT( 11 ) NOT NULL , ADD `prisonreason` VARCHAR( 255 ) NOT NULL ; ADD `totalprison` INT( 11 ) NOT NULL ; ADD `bustlevel` INT( 11 ) NOT NULL ;   Also make sure to edit docrime.php and make a chance of being jailed.   mysql_query("UPDATE users SET prison=100 WHERE userid=$userid", $c);   Enjoy, Need any help ask me. On my game I've also displayed the busters level and some other small things.
  14. Re: HELP   go into C panel, then mysql, then phpmyadmin, then select your DB, click SQL and copy and paste that code into the box and run it
  15. Re: [Free] [v1] BB Gun / Shoot Someone in Back!   Gah. That meens the column is already there, you musta already made the column bbgun? Try deleted it and restarting.
  16. Re: [Free] [v1] BB Gun / Shoot Someone in Back!   Worked fine for me, What SQL error you getting?
  17. Re: Error in V1   Make sure line 12 is:   $uq=mysql_query("SELECT userid FROM users WHERE login_name='{$_POST['username']}' AND `userpass`=md5('{$_POST['password']}')",$c) or die(mysql_error());   Also have you edited it any way? :/
  18. Re: cron jobs ??? try going on the cron url and see if it works there, if that works manually the cron files are fine and its the c panel. Make sure your using curl http://blahblah and that your host supports crons
  19. Re: [Free] [v1] BB Gun / Shoot Someone in Back!   Run it under SQL, or add the item manually. Your choice.
  20. This mod will make the item BB Gun be used for shooting bb bullets at people in the back. Theres several other things, that i'll leave you to find out, Like stats of BB gun, and you cannot hosp people with bb Gun. The user must purchase a BB gun to use this special feature. Enjoy... All tested by me and it worked. :) Can be seen @ www.amazon-survival.com Create injure.php with this code:   <?php require("globals.php"); $it=mysql_query("SELECT inv_id FROM `inventory` WHERE `inv_itemid`=110 AND `inv_userid`=$userid",$c); $ite=mysql_fetch_array($it); if(!$ite) { echo 'You do not own a BB Gun'; $h->endpage(); exit; } $challenge=mysql_real_escape_string($_POST['challenge']); if ($ir['bbgun']>=3) { echo 'You can only use 3 BB bullets a day! [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } if ($ir['energy']<1) { echo 'You do not have enough Power! [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } if ($challenge==$userid) { echo 'You cannot shoot yourself! [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } if ($challenge=="") { echo 'ID you wish to shoot: (Each Shot will cost 7% Power) (You get 3 BB bullets a day) BB Gun Stats: - You have used '.$ir['bbgun'].' bb bullets today - Overall you have taken away '.$ir['bbdamage'].'% - Overall you have fired '.$ir['bbfired'].' bullets!'; } else { $bla=mysql_query("SELECT hp, username FROM `users` WHERE `userid`=$challenge",$c); $blah=mysql_fetch_array($bla); $health=$blah['hp']; if ($health<="30") { echo 'You feel sorry for the guy he already has low health! [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; exit; } $rand=rand(10,30); $randd=rand(1,100); if ($randd<10) { echo ''.$blah['username'].' turned round and dodged the bb bullet! [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; event_add($challenge, ''.$ir['username'].' tryed shooting you in the back, but you dodged it!', $c); mysql_query("UPDATE `users` SET `energy`=energy-1 WHERE `userid`=$userid", $c); mysql_query("UPDATE `users` SET `bbgun`=bbgun+1 WHERE `userid`=$userid", $c); mysql_query("UPDATE `users` SET `bbfired`=bbfired+1 WHERE `userid`=$userid", $c); $h->endpage(); exit; } if ($randd==1 || $randd==2 || $randd==3) { echo ''.$blah['username'].' turned round and shot you! Taken away '.$rand.'% health!'; mysql_query("UPDATE `users` SET `hp`=hp-$rand", $c);; mysql_query("UPDATE `users` SET `bbfired`=bbfired+1 WHERE `userid`=$userid", $c); mysql_query("UPDATE `users` SET `bbgun`=bbgun+1 WHERE `userid`=$userid", $c); event_add($challenge, ''.$ir['username'].' tryed shooting you in the back, But you hit them first taken away '.$rand.'% health !', $c); $h->endpage(); exit; } if ($randd>=10) { echo 'You shot '.$blah['username'].' taken away '.$rand.'% health!'; mysql_query("UPDATE `users` SET `hp`=hp-$rand WHERE `userid`=$challenge", $c); mysql_query("UPDATE `users` SET `energy`=energy-1 WHERE `userid`=$userid", $c); mysql_query("UPDATE `users` SET `bbgun`=bbgun+1 WHERE `userid`=$userid", $c); event_add($challenge, ''.$ir['username'].' shot you in the back taking away '.$rand.' health', $c); mysql_query("UPDATE `users` SET `bbdamage`=bbdamage+$rand WHERE `userid`=$userid", $c); mysql_query("UPDATE `users` SET `bbfired`=bbfired+1 WHERE `userid`=$userid", $c); $h->endpage(); exit; } } $h->endpage(); ?>   Then open inventory.php and find   print " [[url='nuclearbomb.php']Use[/url]]"; }   Under add:   if($i['itmname'] == 'BB Gun') { print " [[url='injure.php']Shoot[/url]]"; }   Open the cron file daysold.php and find:   mysql_query("UPDATE users SET userBANKDAYS=userBANKDAYS-1 WHERE userBANKDAYS>0",$c) or die(mysql_error());   Above add:   mysql_query("UPDATE users SET bbgun='0'", $c);   Run SQL query: ALTER TABLE `users` ADD `bbgun` INT( 11 ) NOT NULL DEFAULT '0'; ADD `bbdamage` INT( 11 ) NOT NULL DEFAULT '0', ADD `bbfired` INT( 11 ) NOT NULL DEFAULT '0'; and INSERT INTO `items` ( `itmid` , `itmtype` , `itmname` , `itmdesc` , `itmbuyprice` , `itmsellprice` , `itmbuyable` ) VALUES ( '110', '4', 'BB Gun', 'Used for shooting peope in the back', '600', '400', '1' )   (Make sure you put the BB gun in a shop, and it must be itemid 110, Unless you change the code)
  21. Re: Wich OS do you prefer? Windows ftw. Linux confuses me :P
  22. Re: Looking for hosting www.namecheap.com hosting... http://bitesites.com/affiliate/idevaffi ... =110 :evil:
  23. I had to make a php based calculator for a quest i made on my game so people can work out questions, seeing as some normal calculators couldnt multiply IP address's. So i made this calculator mod for your game, Its simple, but can be handy if you have riddles / missions requiring maths :P Create new file called "calculator.php" with:   <?php /*----------------------------------------------------- -- Copyright held 2007 Isomerizer -- Calculator.php -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); $numbera=$_POST['numbera']; $numberb=$_POST['numberb']; $do=$_POST['do']; print "Calculation Wizard"; if ($numbera=="" || $numberb=="" || $calculation="") { print "You approach the wise old wizard, he tells you he can work out any sort of sum... Work this out then smart ass: "; print " x + - / [i](Dont try typing in letters i'll just give you the answer 0)[/i]"; } else { if ($do=="times") { $answertimes=$numbera*$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera x $numberb = [b]$answertimes[/b]"; print " Back"; } if ($do=="plus") { $answerplus=$numbera+$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera + $numberb = [b]$answerplus[/b]"; print " Back"; } if ($do=="minus") { $answerminus=$numbera-$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera - $numberb = [b]$answerminus[/b]"; print " Back"; } if ($do=="divide") { $answerdivide=$numbera/$numberb; print "Oh..Thats an easy one, the answer is: "; print "$numbera / $numberb = [b]$answerdivide[/b]"; print " Back"; } } $h->endpage(); ?>   Open "explore.php" and find:   [url='usersonline.php']Users Online[/url]   Just before the add:  [url='calculator.php']Calculator Wizard[/url]   There your calculator will be located under City, now just under Users Online.
  24. Re: Need Help starting game with Lite Best bet is to save for V1 / V2 codes.... They come with all the standard features, hospital, gang system etc. :wink:
  25. Re: [Free] [v1] Find Random Money While Exploring Game   Sounds cool lacey, I just quickly made this simple mod for my game, so it spice's it up a bit, and thought might as well post it on CE :P
×
×
  • Create New...