Jump to content
MakeWebGames

Infamous cTz

Members
  • Posts

    15
  • Joined

  • Last visited

Everything posted by Infamous cTz

  1. so we need to count the number of gangs in the city first right.... then count the players in those gangs..... ?( maybe i will just do top gangs by respect lol even them im confused on the how it will work per city... i only get errors so my code wont even help lol il work on it
  2. ... theres got to be someone who has done a zombie.vs.human conversion... or atleast already created some type of simple contest system for the grpg... all these coders around here .. free or paid ? i just want to hear something
  3. anyone have any type of top gangs in the city script ? maybe just something ordered by the number of members in the city... ?(
  4. something like a kill contest that records... the humans vs. zombies convert would be awesome if someone has ever done it... just any type of contest... help please :D
  5. also i would like links to refill loyalty and energy... but the links are all crazy   its all from a form and looks like [mysql]<form method=get action=$PHP_SELF> <input type=submit name=refill_energy value=\"Refill Energy\"><input type=hidden name=pet_id value=\"$line[id]\"></form> [/mysql]
  6. it stored in its own table called pets... within that is the userid with the pet owners id pets -userid
  7. hmm its just displaying the no pet image... and when i tried switching them around i just got $petimage= "";} with no image hmm
  8. how would i go about making the pet image apear or a no pet image if theres none selected.... [mysql] <? if($user_class->pet != ""){ ?> <? } else { ?> <? } ?> [/mysql] i dont even think user_class->pet will pull your pet... i really appreciate all the help ive received on this site ... but lol again ahh help please ?(
  9. im sure this is really simple... but how do change the link color for NEW events and mail only to stand out better ?(
  10. [mysql] <?php $result = mysql_query("SELECT * FROM `grpgusers` WHERE `city = $user_class->city` ORDER BY `exp` DESC LIMIT 5"); while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { $user_online = new User($line['id']); echo "<div>".$user_online->id.".)".$user_online->formattedname."</div>"; } ?> [/mysql]   i dont understand why this wont work :(
  11. needing some help here... the code below isnt even close seeing how i cant organize by city... something like WHERE $user_class->city ... im lost as you cant tell lol help me   [mysql] <?php $result = mysql_query("SELECT * FROM `grpgusers` WHERE `$user_class->city=` ORDER BY `exp` DESC LIMIT 5"); while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { $user_online = new User($line['id']); echo "<div>".$user_online->id.".)".$user_online->formattedname."</div>"; } ?>   [/mysql]
  12. theres no way to use this extra slot since you can still only add armor(defense) or weapon(offense) stats to any item... ?(
  13. nice work seems to work flawlessly
  14. would also be nice for items to be able to affect all stats +/- ... instead of just choosing between defense(armor) or strength(weapon)... but unfortunately for me it looks like brain surgery lol ... i will let everyone know if i have a moment of clarity
  15. right now there is only weapon / armor... its probably easier than im imagining but any suggestions from those that have added another slot??   also is there a secure forum that could be easily integrated ..??
×
×
  • Create New...