Help Creating The User Levels!

Post all your tuts or request for tuts here.
Post Reply
eltish96
Posts: 40
Joined: Tue Dec 22, 2009 10:21 am

Help Creating The User Levels!

Post by eltish96 »

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
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Help Creating The User Levels!

Post by hallsofvallhalla »

have you watched all the tutorial videos? They explain all this.
eltish96
Posts: 40
Joined: Tue Dec 22, 2009 10:21 am

Re: Help Creating The User Levels!

Post by eltish96 »

hallsofvallhalla wrote:have you watched all the tutorial videos? They explain all this.
No dude, i really havn't got time :(

Mind if you help me with the project dude? Talks kinda went dead last night :(
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Help Creating The User Levels!

Post by hallsofvallhalla »

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.
eltish96
Posts: 40
Joined: Tue Dec 22, 2009 10:21 am

Re: Help Creating The User Levels!

Post by eltish96 »

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.
Do you think i should ditch all the work that Jpoisson did and start up again?, with all your tutorials?
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Help Creating The User Levels!

Post by hallsofvallhalla »

no. Watch the tuts so that you can be familiar with what he has done.
Cold|Drawn
Posts: 17
Joined: Sat Jan 16, 2010 12:03 am

Re: Help Creating The User Levels!

Post by Cold|Drawn »

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
:lol:
User avatar
hallsofvallhalla
Site Admin
Posts: 12026
Joined: Wed Apr 22, 2009 11:29 pm

Re: Help Creating The User Levels!

Post by hallsofvallhalla »

Code: Select all

$playerinfo3['level'] * 100 * $playerinfo3['level']
this does include the previous levels. No sure why you would want to add the previous levels as it would be very minimal.
Post Reply

Return to “Tutorials”