Jump to content
MakeWebGames

Recommended Posts

Posted

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%.

Posted

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?

Posted

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.

Posted (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 by bineye
php tags aren't working

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...