Hey,
I need someone skilled's help (if that makes sense, lol)
I've carried on with this project with a friend, and were both okay at php but not whizz kids.
When doing the member's levels, do you create a new db with Wamp or what? It's just this i'm stuck on. Same with when your creating the weapons, do you create a new db and go from there?
Thanks,
//Elliot
Help Creating The User Levels!
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Help Creating The User Levels!
have you watched all the tutorial videos? They explain all this.
Re: Help Creating The User Levels!
No dude, i really havn't got timehallsofvallhalla wrote:have you watched all the tutorial videos? They explain all this.

Mind if you help me with the project dude? Talks kinda went dead last night

- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Help Creating The User Levels!
I would love to except for no time.
List of things I am working on
Indie-resource
browser tutorials
Gold tutorials and source
Quests of Crocania
Forsaken Sanctum
and a few more things
you should seriously finish the tutorials. They show you how to do everything you have mentioned.
List of things I am working on
Indie-resource
browser tutorials
Gold tutorials and source
Quests of Crocania
Forsaken Sanctum
and a few more things
you should seriously finish the tutorials. They show you how to do everything you have mentioned.
Re: Help Creating The User Levels!
Do you think i should ditch all the work that Jpoisson did and start up again?, with all your tutorials?hallsofvallhalla wrote:I would love to except for no time.
List of things I am working on
Indie-resource
browser tutorials
Gold tutorials and source
Quests of Crocania
Forsaken Sanctum
and a few more things
you should seriously finish the tutorials. They show you how to do everything you have mentioned.
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Help Creating The User Levels!
no. Watch the tuts so that you can be familiar with what he has done.
-
- Posts: 17
- Joined: Sat Jan 16, 2010 12:03 am
Re: Help Creating The User Levels!
halls, I have some questions regarding on user levels as well.
currently the formula or equation is equals to
$playerinfo3['level'] * 100 * $playerinfo3['level']
what if I want to add some difficulties into it
$playerinfo3['level'] * 100 * $playerinfo3['level'] + previous levels experience
that way, the more the players level up, the harder it gets.
In excel, I can always add another column of the player's previous experience
but how do I do it in php?
////edit
nvm, I found out the equation
$playerinfo3['level'] * 100 * $playerinfo3['level'] + $playerinfo3['level']
should include the previous levels' experience

currently the formula or equation is equals to
$playerinfo3['level'] * 100 * $playerinfo3['level']
what if I want to add some difficulties into it
$playerinfo3['level'] * 100 * $playerinfo3['level'] + previous levels experience
that way, the more the players level up, the harder it gets.
In excel, I can always add another column of the player's previous experience
but how do I do it in php?
////edit
nvm, I found out the equation
$playerinfo3['level'] * 100 * $playerinfo3['level'] + $playerinfo3['level']
should include the previous levels' experience

- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Help Creating The User Levels!
Code: Select all
$playerinfo3['level'] * 100 * $playerinfo3['level']