Jump to content
MakeWebGames

Tezza`

Members
  • Posts

    802
  • Joined

  • Last visited

Everything posted by Tezza`

  1. Tezza`

    No I'S

    Re: No I'S wow, Tezza` loves the game
  2. Re: 3 Word Game Yelps very loud
  3. http://s2.thewrestlinggame.com/ Login When i first clicked the link, and seen the login page, i likes it and thought YAY, not ANOTHER dbs / mccode game. I like how it has the Forgot password option, as a lot of games around don't have this option. (i did forget mine xD) Also the description explains briefly what you do and how to become the best, which is what everybody needs, a little advice. It also has a rules section, this is good for proof you can or can not do something in case of banning. Plenty screenshots, in-case people want to see the game instead of giving personal details first E.G. Email address. And more information is another good link, telling the user in plenty of detail what you are able to do in the game E.G. Go to a Premium Option. Register On the register page i like how it is step by step, firstly you choose a Wrestlers name, Username (Warns you this can not be changed after subscription) and email address, and it also makes you agree to the Terms and conditions. Once you have clicked confirm it will take you to yet another section, which is selecting your class, you have 5 options:- Strength Class Techique Class Speed Class Resistance Class Balanced Class And they all contain A little brief description on the wrestler, and once again it warns you, that there is no option to change you class after you have selected it. After you click go, you will get a little pop up message that tells you where the tutorial is.. nice touch. Main Game O.k, so once you enter the game you will have 12 Links on the left navigation bar:- Main board - In here you have your Wrestlers data, Wrestling game tutorial, Wrestling game reports and News about world wide wrestling. Wrestlers data - This gives the wrestlers data in much more detail to the last page.. E.G. What level each stat it, it also has essential information, bonuses, damage modifiers, skills and much more. Bonus - This is just the same as Voting in a dbs / mccode game, so basically voting to get benifets like EXP points. Gym - In the gym there are 8 sections, and its not just train agility, strength etc, it gives the choise of learning new moves, and using points to increase the strength of your wrestler. Messages - basically if someone has sent you a mail, it can be read here. Invitation - I never got a chance to see this section as it tells me i must be level 2 to see this section, maybe one of you people can sign up and tell me ;). Tournements - In here is a section of all the tournements people have set up, or you can set one up, but watch out because only supports can open a tournment. Forum | NT - A forum with lots of threads in from suggestion to bugs and errors, a good way to keep a community growing. Charts - This is a ranking place it gives it gives you the selections of lots of different thing... and you can see who is number 1. Rules and help - very useful for new players who have never played a game like this before. Setting - This gives you the option where you can change your password, wrestlers name and the layout at login. Logout - Which obuastly.. logs you out xD.   And on the right of the screen there is a chat unit.. so you can instantly chat to other players in the game which i did find a little hard to work.. but im sure you cna figure it out.   Verdict = Overall i think the owner of this game has taken sometime out to do this, and he really does care about his game.. so sign up and help promote these types of games. Visual Rating = 4/5 i do like the looks but maybe everything could be centered and ads taking away. Game play = 5/5 I really like the way the owner has made this game.. although this is not the type of games i play i may give it a try.
  4. Re: Free 2 - Icons Huh? ~.^
  5. Re: [v2]Reset Specific User[v2] Hmm, would this not be as easy as to reset them from the Database?
  6. Re: irc requirements ? Nah, i just ment.. you can download mIRC to use as a client other then using the chat here.
  7. Re: SPECIAL ATTACK Alternitive
  8. Re: 3 Word Game When suddenlly the...
  9. Re: Discovery live messenger yeah i got this once - made my system run so slow.. :/
  10. Re: irc requirements ? Youve just gotta click the link above "Chat", on the nav bar, or on the other hand you can download mIRC from www.mirc.com
  11. Re: Windows Xp - customizing the start button haha, my button definatlly should :(, i have vista... dosent even say start, just a funny looking circle. lol
  12. Re: Note to all ce users! mmm, this is cool :D
  13. Re: Free 2 - Icons I also got this same problem... so i put ..   $this->display_icons($ir);   Above   [url='index.php']Home[/url]   In mainmenu.php. Works fine now.
  14. Re: Free 2 - Icons I got the same problem, what i did was change the folder name to images and then in the code its self change the directory or images/blah.png instead of icons/blah.png hope this help :)
  15. Re: [Free] Jail Bail [V1] oh lawdy, i was just about to post it xD.
  16. Re: 3 Word Game sexual relationship with...
  17. Re: NEED HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Here - this should work.   <? $c=mysql_connect('localhost','dan','dan2') or die(mysql_error()); mysql_select_db('dan_game',$c); ?>
  18. Re: Free 2 - Icons yay i got working :P, before i seen your post aswell :P
  19. Re: Free 2 - Icons what error?
  20. Re: Free 2 - Icons Nice one nyna.
  21. Re: [MCcode V1.1] New Search/Locate This is it in v2   function gang_dropdown($connection,$ddname="gang",$selected=-1) { $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM gangs ORDER BY gangNAME ASC",$connection); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_row($q)) { $ret.="\n<option value='{$r['gangID']}'"; if ($selected == $r['gangID'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.=">{$r['gangNAME']}</option>"; } $ret.="\n</select>"; return $ret; }       <?php include "globals.php"; print "<center><h3>Locate Player</h3> <table class='smallcoll' border='1' bordercolor='#303030' bgcolor='#505050' width='40%'> <tr bgcolor='#404040'> <th>Search By Name</th> </tr> <tr> <form action='locate.php' method='get'> <td> <center><input type='text' name='name' /> <input type='submit' value='Search By Name' /> </td> </form> </tr> <tr bgcolor='#404040'> <th>Search By ID</th> </tr> <tr> <form action='viewuser.php' method='get'> <td> <center> <input type='text' name='u' /> <input type='submit' value='Search By ID' /> </center> </td> </form> </tr> <tr bgcolor='#404040'> <th>Search By Location</th> </tr> <tr> <form action='locate.php' method='get'> <td> <center> Location: ".location_dropdown($c,'location')." <input type='submit' value='Search By Location' /> </center> </td> </form> </tr> <tr bgcolor='#404040'> <th>Search Users In Gang</th> </tr> <tr> <form action='locate.php' method='get'> <td> <center> Location: ".gang_dropdown($c,'gang')." <input type='submit' value='Search Users In Gang' /> </center> </td> </form> </tr> </table>"; if($_GET['name']) { $q=$db->query("SELECT * FROM users WHERE username LIKE ('%{$_GET['name']}%')",$c); print " <center> <hr width='50%' color='black'> <hr width='50%' color='black'> <center> <h4>Searched for users with the name like: [b]{$_GET['name']}[/b]</h4> <table border='1' bordercolor='#303030' class='smallcoll' bgcolor='#505050' width='75%'> <tr bgcolor='#404040'> <th>User</th> <th>Level</th> <th>Money</th> </tr>"; if ($db->num_rows($q) == 0) { print "<tr colspan='3'> <td colspan='3'>No users found!</td> </tr>"; } else { while($r=$db->fetch_row($q)) { $fm=money_formatter($r['money']); print " <tr> <td>[url='viewuser.php?u={$r[']{$r['username']}[/url]</td> <td>{$r['level']}</td> <td>{$fm}</td></tr>"; } print "</table>"; } } if($_GET['location']) { $q1=$db->query("SELECT * FROM cities WHERE cityid={$_GET['location']}",$c); $r1=$db->fetch_row($q1); $q=$db->query("SELECT * FROM users WHERE location={$r1['cityid']}",$c); print " <center> <hr width='50%' color='black'> <hr width='50%' color='black'> <Center> <h3> Searching users in the city named: [b]{$r1['cityname']}[/b]</h3> <table border='1' bordercolor='#303030' class='smallcoll' bgcolor='#505050' width='75%'> <tr bgcolor='#404040'> <th>User</th><th>Level</th><th>Money</th> </tr>"; if ($db->num_rows($q) == 0) { print "<tr colspan='3'> <td colspan='3'> No users found!</td></tr></table>"; } else { while($r=$db->fetch_row($q)) { $fm=money_formatter($r['money']); print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']}[/url]</td><td>{$r['level']}</td><td>{$fm}</td></tr>"; } print "</table>"; } } if($_GET['gang']) { $q=$db->query("SELECT * FROM users WHERE gang={$_GET['gang']}",$c); $q1=$db->query("SELECT * FROM gangs WHERE gangID={$_GET['gang']}",$c); $r1=$db->fetch_row($q1); print " <center> <hr width='50%' color='black'> <hr width='50%' color='black'> <Center> <h3> Searching users which is the gang named: [b]{$r1['gangNAME']}[/b]</h3> <table border='1' bordercolor='#303030' class='smallcoll' bgcolor='#505050' width='75%'> <tr bgcolor='#404040'> <th>User</th><th>Level</th><th>Money</th> </tr>"; if ($db->num_rows($q) == 0) { print "<tr colspan='3'> <td colspan='3'> No users found!</td></tr></table>"; } else { while($r=$db->fetch_row($q)) { $fm=money_formatter($r['money']); print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']}[/url]</td><td>{$r['level']}</td><td>{$fm}</td></tr>"; } print "</table>"; } } $h->endpage(); ?>
  22. Re: *+*Amazing New Explore *+* [V1] Screenshot?
  23. Re: THIS OR THAT? John Wayne PC or laptop
  24. Tezza`

    New game

    Re: New game ^ Is trying to stay away from the cheese although he loves cheese. < Is apparentlly a n00b *cough* v Is sleepy?
  25. Re: Count Backwards :D Think you mean 4988 xD 4987
×
×
  • Create New...