Jump to content
MakeWebGames

mikeymike

Members
  • Posts

    9
  • Joined

  • Last visited

    Never

mikeymike's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: arcade mod v1 the way i figured it would have to be set up is the score list would be seperate from the actual flash game. it wouldnt be listed on the actual flash game. just on the same page as the flash game, or i could make a page to hold all of the scores for each game. it should be able to log their user id since they have to be logged in to play the game. i dont care if it has to go by the honor system and the players have to manually enter the score. i would delete anything ridiculous
  2. Re: arcade mod v1 how would you go about keeping a high score for each game just with your players playing it? i would guess you would need them to enter the score manually and go by the honor system. i just need it to keep the top 10 scores and no repeats by the same user id#
  3. where would i find the table in v1 that tells it what to look for when listing the user's stat ranks on the index page? i cant find it on index.php i guess i should specify better. im a big noob at this stuff. my buddy has a game and he has it set up so i can mess around in a beta version. im trying to add pet stat ranks to the table that lists their stats. i wanted to try to modify the one that makes the user stat ranks work. i have everything working right except for the actual ranks of the pet stats
  4. Re: !!**Whore House Mod FREE**!! Force: +0/-0 Online   thats all that is there
  5. Re: !!**Whore House Mod FREE**!!   at the left where it says force. click on "light" and it gives them +1, test it on me! xD i dont see it anywhere? do you need a minimum # of posts or anything? Force: +4/-11
  6. Re: !!**Whore House Mod FREE**!! how do you do + force?
  7. Re: !!**Whore House Mod FREE**!! is it hard to make it also require some amout of energy? and to also make the player randomly get STDs that decrease energy and will?
  8. Re: please help with HOF the attack total, wins and losses are already stored in the database. i forgot to mention that i appreciate the help so far. please bear with me. i am extremely new at this
  9. im a complete noob at this and im just trying to learn something. can someone see if they can tell me what i am doing wrong here? i may be way off on the code for what i am attempting } function hof_attacks() { global $ir,$c,$userid; print "Showing the 20 users with the highest total attacks   Pos User $q=mysql_query("SELECT u.*,g.* FROM attacklogs u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 ORDER BY (us.wins+losses) DESC,u. userid ASC LIMIT 20", $c); $p=0; while($r=mysql_fetch_array($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="";$et=""; } else { $t="";$et=""; } print " $t$p$et $t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et "; }   i am trying to put a category in my HOF for most total attacks. i also want it to list the total there too. i know i didnt include that part anywhere yet. please dont make fun of me if i am going completely in the wrong direction with this. i cant figure out why it wont show anything when i click the link for "total attacks". i dont get any kind of error
×
×
  • Create New...