Daron Posted April 19, 2011 Posted April 19, 2011 Im looking for a gym script like on naruto-unleashed.com basically how it works on there is it's a gym that u use to train up accuracy for ur skill areas. & it's 20 levels & each level increases accuracy by 5%. Quote
bineye Posted April 19, 2011 Posted April 19, 2011 Could you be more specific? You have to remember that only a small percentage of this community will have heard of any said game. Also, are you expecting someone to make this for free, or are you looking to pay for it? Quote
Daron Posted April 19, 2011 Author Posted April 19, 2011 well im not looking for anyone to make me anything, i just need someone to help me with how to start something like it. like an piece of it & i can take it from there. & yea how the gym works is, u can train a stat by levels. & each level=5% until u reach level 20 which is 100% obviously. & its accuracy so yea level 20 means u cant miss & level 10 means its 50% chance of the skill working. Quote
bineye Posted April 19, 2011 Posted April 19, 2011 (edited) rand() functions are probably going to be used, like this for example: if($userlevel < 20) { $rand=rand(0,100); if $rand < $userlevel*5 { skill worked code } else { failed code } } else { skill worked code } Edited April 19, 2011 by bineye php tags aren't working Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.