Jump to content
MakeWebGames

mikrows

Members
  • Posts

    53
  • Joined

  • Last visited

    Never

Everything posted by mikrows

  1. mikrows

    WWII

    Re: WWII Italy - 17 Japan - 19 Great Britain - 42 United States - 21 Soviet Union - 21 France - 19
  2. Re: FIRST THOUGH! sugar
  3. mikrows

    No I'S

    Re: No I'S One learns new stuff every day, one has the user number 4171. One knows that the fun and games zone must not be the correct area for one query,but one would love to see the answer here for fun. Sorry Nyna One feels the answer may not work here due to the fact one can't use the 3rd vowel,so one has posted the query where the query should be. Nyna your slots program works great, but every second go one gets warned of a error a not legal offset type on row 118. Thats just taken me an hour to do. Thanks Nyna User 4171 lol
  4. Re: Free 2 - Slots Hi Nyna, this is much easier being able to use the I. great code , ty , but on every second go I get a warning message.. Illegal offset type. this is the line. $wheel = $wheels[$_SESSION['wheel']]; Thank you
  5. mikrows

    No I'S

    Re: No I'S Everywhere one looks, ones eyes fall on Nyna's posts that range from her Young looks,that may be an old photo, and her 30 years knowledge of computers, to her helpfull ways to new members ,the posts she put here, ones lost for words, how hard one must try to put a long sentence together only to use 4 vowels. she attempts to never be rude to new comers , but who can blame her when noobs annoy her. Her code are great and the free mods she posts as well, one can only hope one day to be as good as Nyna the Queen of C E .com Just want to add...... Thank You Nyna for your help your (had to pause here for a second or two, need to search for another word) So Thank You Nyna for your help your a great muse. for what muse means google 'Muse n. Greek Mythology' the answers at answers.com, no.2b
  6. Re: Ideas... Its took me a week, but now ive worked out where it goes. Thanks Mike
  7. Re: stop same ip transfers Thank You Nyna, now I understood that, I'll be up all night trying to think of the fix,lol. Many Thanks Mike
  8. Re: stop same ip transfers Erm , well , Sorry Nyna, I am new to this and sill learning, as to what you said, Sorry you lost me,With lots of peole ready to ridicule rather then help, Im self learning. Thanks. Mike P.S. nice pic, lol.
  9. Re: stop same ip transfers Thanks, as i said in new and learning, I just about managed to do this by pulling that line from another part of the file, then adding the rest underneath. I spent all day trying to get it working, then by reading other files, I discovered that it needed the exit; line putting in.
  10. Im New to this and self learning, Ive been looking through the forum for something to stop same IP transfers, I couldnt see anything, so after a few late nights, and filling up the swear box, I did this, I hope Im not stepping on anyone toes, if so SORRY. Im running it on V2. In sendcash.php find   $db->query("INSERT INTO cashxferlogs VALUES ('', $userid, {$_GET['ID']}, {$_POST['money']}, unix_timestamp(), '{$ir['lastip']}', '{$er['lastip']}')"); } } else {   after it put   $it=$db->query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid={$_GET['ID']}"); $er=$db->fetch_row($it); if($ir['lastip'] == $er['lastip']) { print "You can't transfer to someone on the same IP. [url='index.php']> Back[/url]"; $h->endpage(); exit; }   you can do the same for sendbank.php sendcrys.php sendcyber.php hope this helps thanks Added code tags -- Tezza`
  11. Re: Ideas...   Could you possibly tell me where the correct possition is please. Thank You
  12. Re: Free Jail feature Bribe The guard Reload, I do Appologise I didnt see that and now you explained it clearly and pointed out where it is and also now im fully awake,(It was 4.30am where i was), well thank you for doing it anyway, the members like it, but i did add the text telling the members that they lost the money anyway "take the $$cost anyway", hope you dont mind that.... quite funny, no ones noticed that they are loosing double the money, id better go and take my line out now. Once again Thanks
  13. Re: Free Jail feature Bribe The guard   That was allready done with the coded i added above about 5 posts ago   I used reloads post but it certainly did not take money off the victim if he failed the bribed, as I said ive added a line so that if you get caught bribing, you still lose the money, Ive highlited the lines ive added which you can see are not in reloads orriginal, Thank you.
  14. Re: Free Jail feature Bribe The guard Just basically added a line so if you fail the bribe you still lose the bribe money. Hope that was ok.   <? session_start(); require "globals.php"; if($ir['jail']==0) { die("You arent in jail!"); } //set $cost to what you want it to cost $cost=rand(10000,50000); //set $stat to the stat you want it to use..eg. brave, energy, will etc If ($ir['money']<$cost ) { die ("Your Dont have enough money to bribe the guard or enough brave to do it."); } if(rand(1,100) <= 20) { print "You successfully paid $$cost to Bribed your way out of the Torn County Jail."; mysql_query("update users set money=money-$cost where userid=$userid",$c)or die(mysql_error()); mysql_query("UPDATE users SET jail=0 WHERE userid=$userid",$c); } else { $jailtime=(int) rand(1,30); print "You were caught attempting to bribe your way out of the Torn County Jail. The officers beat you for a while, take the $$cost anyway and added $jailtime minutes to your sentence."; mysql_query("update users set money=money-$cost where userid=$userid",$c); mysql_query("UPDATE users SET jail=jail+$jailtime, money=money-$cost WHERE userid=$userid", $c); mysql_query("UPDATE users SET jailreason='Caught attempting to escape' WHERE userid=$userid", $c); } ?>
  15. Re: Counting (nr game) So silly, but i couldnt resist adding 1, I started to look see if it ran in sequence, but then noticed how many pages there was, lol 1800
×
×
  • Create New...