Further training from old trainer
-
- Sword Novice
- Posts: 45
- Joined: Tue Apr 19, 2005 9:43 am
- Location: Northlands?? then Waterdeep
- Contact:
Further training from old trainer
Is it possible to somehow code it that you can get further training from someone, after you've aready learnt things from them..
example....
You learn things as a new character, then when you reach say 30th, the trainer asks you to perform a task (quest) to prove yourself, and if you successfully complete said quest they'll teach you something new..
Theres not much of a difference here to the normal trainer whose skills are just beyond your level except that the skill listing (when you type train) wouldn't show it normally until you finish the quest, but afterwards it would..
I know I know, messy question, my apologies beforehand
example....
You learn things as a new character, then when you reach say 30th, the trainer asks you to perform a task (quest) to prove yourself, and if you successfully complete said quest they'll teach you something new..
Theres not much of a difference here to the normal trainer whose skills are just beyond your level except that the skill listing (when you type train) wouldn't show it normally until you finish the quest, but afterwards it would..
I know I know, messy question, my apologies beforehand
I think what he is asking is if you could train other things from him untill you get to say a certain level. Then he offers you the quest for the new skill....
So Say the trainer teaches dodge, kick, and whips untill level 30....then once you reach this he says "Go do this and I will teach you something new" then he teaches Chainsaw juggling.....Then after the quest you have an option to learn chainsaw juggling from him.....not like say the brew quest where you are tought it no matter what once you finish the quest, but you have the ability to train it whenever you want. If this is not correct please disreguard this post
So Say the trainer teaches dodge, kick, and whips untill level 30....then once you reach this he says "Go do this and I will teach you something new" then he teaches Chainsaw juggling.....Then after the quest you have an option to learn chainsaw juggling from him.....not like say the brew quest where you are tought it no matter what once you finish the quest, but you have the ability to train it whenever you want. If this is not correct please disreguard this post
Counting bodies like sheep...to the rhythm of the war drums. ~~~ Maynard
-
- Sword Novice
- Posts: 45
- Joined: Tue Apr 19, 2005 9:43 am
- Location: Northlands?? then Waterdeep
- Contact:
Thanks for all your input guys, I don't fully understand all of the coding yet, so half of what you've told me has flown straight over my head, but am slowly teaching myself through your lessons. Will give it a go though and if it doesn't work... well I can always handball it on to someone who does know, or go with the master/apprentice scenario..
Thanks again
Adam
Thanks again
Adam
Further training from old trainer
I think I have a grip on how Tyr explained it...
So say you have a trainer who will train
short blades
backstab
and when the person completes a quest
weapon focus
circle stab
the code to intercept would be something like:
When the player is given the quest, and completes it, it will set the quest bit to fill in the prog above to allow the player to train those skills, until then, only the skills not intercepted will go through to let train.
Did I get that right?
EDIT: Shoot I can't get the spaces in front to keep on the post :/
EDIT EDIT: Woo! Thanks Sharni!
So say you have a trainer who will train
short blades
backstab
and when the person completes a quest
weapon focus
circle stab
the code to intercept would be something like:
Code: Select all
>intercept_prog train~
if string($1) == weapon
or string($1) == circle
if quest(x,x,$n) == 1 <-- This is the completed quest qbit
mpunintercept
else
sayto $n Sorry, I cannot train those skills to you now.
endif
else
mpunintercept
endif
~
When the player is given the quest, and completes it, it will set the quest bit to fill in the prog above to allow the player to train those skills, until then, only the skills not intercepted will go through to let train.
Did I get that right?
EDIT: Shoot I can't get the spaces in front to keep on the post :/
EDIT EDIT: Woo! Thanks Sharni!
Last edited by Kregor on Fri Jul 01, 2005 12:49 am, edited 2 times in total.
"There is no safety for honest men except by believing all possible evil of evil men."
Kregor - Ranger of Tangled Trees
Rozor - Lady Luck's Duelist
Tygen - Ranger-Bard of Mielikki
Kregor - Ranger of Tangled Trees
Rozor - Lady Luck's Duelist
Tygen - Ranger-Bard of Mielikki