Jump to content
MakeWebGames

spiky1471

Members
  • Posts

    28
  • Joined

  • Last visited

    Never

Everything posted by spiky1471

  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 . . .
  16. Any1 reccomend someone who is good at creating the login pages/registration in game designs - basicaaly a complete redisign for your game. Looking to start a new game, and ganna need a design in a couple weeks time. so looking for someone with talent and can create a Custom UNIQUE Design. Any reccomendations or if u think ur up for the job let me know. Design will Be US Army Based
  17. Re: Looking for a In House Coder (30% Rev Share From Game) coding just isnt me :) im a designer more than any of it, and for every online project im doing/done/starting ive allways had a coder. jsut easier to have someone else do it :)
  18. Re: Looking for a In House Coder (30% Rev Share From Game) still searching for a coder :)
  19. Re: Looking for a In House Coder (30% Rev Share From Game)   99% reliable :)
  20. Re: Looking for a In House Coder (30% Rev Share From Game) ok im ganna change it up about the revenue - this is all to be discussed still though with the coder. 60% you will recieve at first while im ona friends host. after a matter of 2 weeks or so. and i move hosts. that will be a 70% Rev Share to you the coder.
  21. Re: Looking for a In House Coder (30% Rev Share From Game)   like ive said ive just thrown the idea out there. If a coder is interested and would want a better cut etc had terms of agreement etc that can all be discussed with him/here. ive thrown the basic idea out there to see what sorta response i get. They have any terms its down to them to say :)
  22. Re: Looking for a In House Coder (30% Rev Share From Game) That will be discussed with the coder :) like i said if interested and want to discuss this let me know if u would liek a better cut or w/e then that can all be discussed Edit: Also the main bulk of the work will be at the beggining once the game is set - then there will be alot less to do (i think) other than the odd Mod here and there and sorting any bugs
  23. Re: Looking for a In House Coder (30% Rev Share From Game) ok so ive got the point with v3/v2.5/V Whatever it is So onto my next point. Anyone interested in being an inhouse coder - Interested in talking about my offer . . .
  24. Ok i had a game running from McCodes a while back and deciding to create another one. But ima a lil outa sorts, and cant remember all the issues etc. So im after a In House coder - you will install the Game - V1 Or V2 (we can discuss that). and get rid of the problems there are - ie the bugs. help install mods etc we want in the game and getting it looking non default. there are 3 people in this project, all names of game, items, style of game etc are to be decided. me - basically run the game, advertising, get the game earning etc etc Host - will just host us Coder - You the coding crap. each will recieve a 30% rev share from game, 10% will go back to custom template etc for the game. As soon as the game starts earning, then i will move this to our own host upon which the coder will recieve 45% and i will recieve 45% and 10% back to game. I Have a few techniques that will have this game earning more than a few other new games on the block. If Interested to no more, let me know. ill require some sort of portfolio with ur previous coding work, and MC Code work I Heard there was a v3 am i wrong ? Edit: Im thinking of making it so your a Sniper wroking your way up - doing different job etc change the usual atributes etc so you work your way up as a sniper - get Army based rankings etc will go into detail with any1 interested in coding.
×
×
  • Create New...