PDA

View Full Version : Tourble Learning skills


bot403
05-30-2002, 12:12 AM
Does anyone else notice their server is not upping skills like it should. FOr instance i swam for a long time and my swim didnt go up, or using a sword and my 1H slash doesnt go up the more i use it. Is this a bug or unimplemented feature?

Baltar
05-30-2002, 07:41 AM
I found that that skills need to be set to 1
to go up. for example setskill 28 1
for hand to hand. Naturally, this is a bitch
to set all you players so I set an npc with
a quest that does this:
(file 1.qst in quest dir)
(it is important that you leave a space after the setskill args or
it will not parse. Just cut and paste the code and it should work)

NPC_SCRIPT 1 {
TRIGGER_TEXT:Hail:{
RAIN 0
EMOTE:Grins at %CHARNAME%
FACE_TARGET
SAY:Hello %CHARNAME%, To live here you need to know how to use a weapon
SAY:I can teach * UNIVERSAL * weapon use.
}

TRIGGER_TEXT:UNIVERSAL:{
SAY:Here's a little move I learned in qeynos
SETSKILL 0 1
SETSKILL 1 1
SETSKILL 2 1
SETSKILL 3 1
}

Baltar
05-30-2002, 09:17 AM
another way is to log in 200 status and simply type
#setallskill 1 for every user.

bot403
05-30-2002, 11:13 AM
Shouldnt they just make the server give everyone a skill of one in that area when they create a char then? Makes sense to me. I think ill post that in feature requests too ;)

Baltar
05-30-2002, 12:48 PM
Yeah that's a good idea. Thx :)

bot403
06-03-2002, 07:04 AM
Oh, i fixed it, i guess i didnt realize only half the skills work. It will only autoincrement ones that WORK. Setallskill 1 will show you what skills actually work with the server at this time.

Baltar
06-03-2002, 07:48 AM
No wonder my parry wasn't increasing.

stormgod
06-03-2002, 08:15 AM
actually its a small mistake in the setskill command , it's fixed for next version and was working on the previous one hehe