Jump to content
MakeWebGames

spiky1471

Members
  • Posts

    28
  • Joined

  • Last visited

    Never

spiky1471's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: Who can create Game Designs - Login pages/headers etc   You mean Illegalife he's great charges $60-80 great support after and its a good template yea thats the guy :)   not loading for me . . .
  2. Re: Who can create Game Designs - Login pages/headers etc   so if i design it u can slice it ? what would u charge for a registration and login page .psd to w/e   Best I've seen I have to say, from her previous examples is Scarlet and and the person with the most potential - Hazard. can u link me to a post/website
  3. who here can do them ? IllegalGFX - name summit like that Skyfuse - Best designers ive seen so far for MC Codes can any1 else do them ?
  4. Re: Game Ranks Mod so any update this right/wrong . . .
  5. function get_rank($stat, $mykey) { global $ir,$userid,$c; $q=mysql_query("SELECT count(*) FROM userstats us LEFT JOIN users u ON us.userid=u.userid WHERE us.$mykey > $stat AND us.userid != $userid AND u.user_level != 0", $c) ; return mysql_result($q,0,0)+1; } function get_gamerank($level, $housevalue, $stats) { $tp=($level*$level) * 3000 + ($housevalue) + (($stats['strength']+$stats['agility']+$stats['guard']+$stats['labour']+$stats['IQ']) * 10); if ( $tp < 100000 ) { return "#1 First Newbie"; } else if ( $tp < 400000 ) { return "#2 Newbie"; } else if ( $tp < 1600000 ) { return "#3 Beginner"; } else if ( $tp < 6400000 ) { return "#4 Not Experienced"; } else if ( $tp < 25600000 ) { return "#5 Rookie"; } else if ( $tp < 102400000 ) { return "#6 Average"; } else if ( $tp < 409600000 ) { return "#7 Good"; } else if ( $tp < 819200000 ) { return "#8 Very Good"; } else if ( $tp < 3276800000 ) { return "#9 Greater Than Average"; } else if ( $tp < 13107200000 ) { return "#10 Experienced"; } else if ( $tp < 52428800000 ) { return "#11 Highly Experienced"; } else if ( $tp < 209715200000 ) { return "#12 Honoured"; } else if ( $tp < 838860800000 ) { return "#13 Highly Hounoured"; } else if ( $tp < 3355443200000 ) { return "#14 Respect King"; } else if ( $tp < 6655886400000 ) { return "#15 True Champion"; } }   Now i want this so the only thing that effect your rank is your level - how sould the code look im guessing summit like   function get_rank($stat, $mykey) { global $ir,$userid,$c; $q=mysql_query("SELECT count(*) FROM userstats us LEFT JOIN users u ON us.userid=u.userid WHERE us.$mykey > $stat AND us.userid != $userid AND u.user_level != 0", $c) ; return mysql_result($q,0,0)+1; } function get_gamerank($level) { $tp=($level); if ( $tp < 5 ) { return "#1 First Newbie"; } else if ( $tp < 10 ) { return "#2 Newbie"; } else if ( $tp < 15 ) { return "#3 Beginner"; } else if ( $tp < 6400000 ) { return "#4 Not Experienced"; } else if ( $tp < 25600000 ) { return "#5 Rookie"; } else if ( $tp < 102400000 ) { return "#6 Average"; } else if ( $tp < 409600000 ) { return "#7 Good"; } else if ( $tp < 819200000 ) { return "#8 Very Good"; } else if ( $tp < 3276800000 ) { return "#9 Greater Than Average"; } else if ( $tp < 13107200000 ) { return "#10 Experienced"; } else if ( $tp < 52428800000 ) { return "#11 Highly Experienced"; } else if ( $tp < 209715200000 ) { return "#12 Honoured"; } else if ( $tp < 838860800000 ) { return "#13 Highly Hounoured"; } else if ( $tp < 3355443200000 ) { return "#14 Respect King"; } else if ( $tp < 6655886400000 ) { return "#15 True Champion"; } } but change the values as they are a lil high to reach level wise.
  6. Re: Looking for a In House Coder (30% Rev Share From Game)   i said nothing about layouts - im having someone custom make one - probably from Skyfuse (they have skill) i said u cant code - and are an amatuer Thats my opinion - if u dont like it, thats ur problem not mine
  7. Re: Looking for a In House Coder (30% Rev Share From Game)   no u couldnt do this easily i checked ur work, your an amatuer and not good enough for the quality of game i plan on
  8. Re: Looking for a In House Coder (30% Rev Share From Game) ill give this 24hours and then this is closed
  9. Re: Looking for a In House Coder (30% Rev Share From Game) Ok ive changed my offer around: you as the coder have to just do the basic game instalation and instal a couple mods (nothing to hard) remove the bugs - Market/Froums etc Then just install mods etc as we go - remove any bugs we find You will Recieve 75% of game revenue after 1 month i will pay you $150 if you have stayed and helped out   This is my final offer - let me know if interested
  10. Re: Looking for a In House Coder (30% Rev Share From Game) it says 99.9% reliable - but i just called it 99% :) its garenteed :) and ill be interested in a website design though for the game drop me a message with u prices please
  11. Re: Looking for a In House Coder (30% Rev Share From Game) ok im re-opening this as the coder who was ganna do it it looks like he just doesnt have the time. I Have the Host ready andwaiting Just the need the coder to come in and get everything set. Ill be getting a custom theme done then before launching the game interested let me no and we can discuss it further
  12. Re: Game Ranks Mod   hmm guess i coulda done that lol thx though +1 for u
  13. Add this to global_funcs.php this MUST go at the bottom of the page function get_rank($stat, $mykey) { global $ir,$userid,$c; $q=mysql_query("SELECT count(*) FROM userstats us LEFT JOIN users u ON us.userid=u.userid WHERE us.$mykey > $stat AND us.userid != $userid AND u.user_level != 0", $c) ; return mysql_result($q,0,0)+1; } function get_gamerank($level, $housevalue, $stats) { $tp=($level*$level) * 3000 + ($housevalue) + (($stats['strength']+$stats['agility']+$stats['guard']+$stats['labour']+$stats['IQ']) * 10); if ( $tp < 100000 ) { return "#1 First Newbie"; } else if ( $tp < 400000 ) { return "#2 Newbie"; } else if ( $tp < 1600000 ) { return "#3 Beginner"; } else if ( $tp < 6400000 ) { return "#4 Not Experienced"; } else if ( $tp < 25600000 ) { return "#5 Rookie"; } else if ( $tp < 102400000 ) { return "#6 Average"; } else if ( $tp < 409600000 ) { return "#7 Good"; } else if ( $tp < 819200000 ) { return "#8 Very Good"; } else if ( $tp < 3276800000 ) { return "#9 Greater Than Average"; } else if ( $tp < 13107200000 ) { return "#10 Experienced"; } else if ( $tp < 52428800000 ) { return "#11 Highly Experienced"; } else if ( $tp < 209715200000 ) { return "#12 Honoured"; } else if ( $tp < 838860800000 ) { return "#13 Highly Hounoured"; } else if ( $tp < 3355443200000 ) { return "#14 Respect King"; } else if ( $tp < 6655886400000 ) { return "#15 True Champion"; } } Add this to viewuser.php [b]Rank:[/b] ".get_gamerank($r['level'],$r['hPRICE'],$r)."   Ok i was given this mod here - i think its a free one as i see it on mccodes website but no download link Anyway - i was getting someone to set game up and mods etc etc but when i gave them this they said there should be an SQL file.   Now should there be an SQL File to go with this ? And if this is a free mod - can someone upload it for me to download with sql
  14. Re: Illegalife and his GFX ok so what sorta price are we talking . . .
  15. Re: Looking for someone to create Login/reg/in game desgin PM Sent Could u give me a rough price guide . . .
×
×
  • Create New...