Quote:
Originally Posted by JoieJones90
i know:) but it shouldn't be so hard to do that? i mean, i think clienside is more easy than the serverside is:o.. some1 agree with me or eny suggestion?
|
It's very easy to do. Basically there is a job list in the ini folder. You can edit, change or add to those to make different job numbers have different text. Then modify it server side and you're basically good to go.
Simply start everyone off with lets say job id #1 which could be "None" or "Trainee" or something like that and then change the job id based on what the player chooses.
As for the character creation I can think of a few ways to do it.
#1 You can do some fairly serious client editing to change the char creation window + some server side editing so that only one class is available or w/e. Fairly in depth editing and would be a pain for people playing.
#2: Make your registration script when people make an account simply create the character. Quite simple to do really... Just ask the player what they want the character name, gender and size to be and run a check to see if it's valid. if so create the account and character in your sql database (or flatfile if that's what you are using)
As for item permissions, simply re-write the itemtype.dat client side to change job descriptions and such. Then server side run all your checks to see if an item can be equipped by a certain class.
It's all simple stuff but it's a TON of legwork to completely change classes because there are thousands of entries in the itemtype plus all the other client editing and server side work... Still, if you wanna do and have the time it it's quite simple