Page 1 of 1

Help Creating The User Levels!

Posted: Sat Jan 09, 2010 3:28 pm
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

Re: Help Creating The User Levels!

Posted: Sat Jan 09, 2010 3:51 pm
by hallsofvallhalla
have you watched all the tutorial videos? They explain all this.

Re: Help Creating The User Levels!

Posted: Sat Jan 09, 2010 6:23 pm
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 :(

Re: Help Creating The User Levels!

Posted: Sat Jan 09, 2010 7:08 pm
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.

Re: Help Creating The User Levels!

Posted: Sat Jan 09, 2010 9:05 pm
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?

Re: Help Creating The User Levels!

Posted: Sat Jan 09, 2010 9:31 pm
by hallsofvallhalla
no. Watch the tuts so that you can be familiar with what he has done.

Re: Help Creating The User Levels!

Posted: Fri Jan 29, 2010 5:45 pm
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:

Re: Help Creating The User Levels!

Posted: Sun Jan 31, 2010 10:56 am
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.