Page 1 of 1
(Suggestion) Winter Gloves
Posted: 20 Feb 2008, 13:13
by Shaili (a.k.a. tds)
Since Winter Gloves cannot be obteined at the moment, I had an idea for a possible alternate Quest for taking them.
There could be a NPC in Santa's Village, maybe a tailor, who can make them out of White Furs!
(White and fluffy as the gloves XD) Obviously this way is too simple, so it can be made more diffucult with the mechanism of obtaining the forest bow: so you should bring many and many furs, to get this item. Cool, isn't it?

Re: (Suggestion) Winter Gloves
Posted: 20 Feb 2008, 13:50
by Crush
Good idea. Is there anyone who feels like scripting the quest?
Re: (Suggestion) Winter Gloves
Posted: 20 Feb 2008, 19:28
by Shaili (a.k.a. tds)
Unfortunatly, I have no experience in scripting. If you can give me a guideline or the script of the Forest bow's quest, I am glad to help ^^
Re: (Suggestion) Winter Gloves
Posted: 23 Feb 2008, 18:10
by Merlin
I had that same idea also. I'll crank out the script real quick. I've been away for the week, but I should be able to get one done. How many White Furs for the gloves? 5? I was wondering if also he could make t-Necks? 10 furs?
btw. the script for the forest bow can be found in the server package for DL. I could easily modify the and copy the forest bow script.
I guess it could be done that way and make it harder to get.
Re: (Suggestion) Winter Gloves
Posted: 23 Feb 2008, 23:40
by Shaili (a.k.a. tds)
Sure Merlin. I suggested using this script to make unpredictable when the gloves will be obtained, since furs are quite common. If I can help in something, PM me ^^
Re: (Suggestion) Winter Gloves
Posted: 22 Mar 2008, 22:08
by Shaili (a.k.a. tds)
Even with my little skill as scripter, I started modifying the Forest Bow Quest Script in this sense. If someone will give me a hand in writing and/or testing, I will be happy ^^
Re: (Suggestion) Winter Gloves
Posted: 23 Mar 2008, 15:30
by Blamoo
Shaili (a.k.a. tds) wrote:Even with my little skill as scripter, I started modifying the Forest Bow Quest Script in this sense. If someone will give me a hand in writing and/or testing, I will be happy ^^
I help you... i'm eA scripter
EDIT: but... i dont speak english very well so... the script will need review
Re: (Suggestion) Winter Gloves
Posted: 23 Mar 2008, 16:17
by Blamoo
done...it works... need review at messages only
i need some english lessons
Code: Select all
<header>{
if (Q_227 == 1) goto ep_1;
if (Q_227 == 2) goto done;
mes "[Tailor]";
mes "give me some white fur and i make winter gloves";
next;
menu "yes",yes,"no",no;
close;
yes:
mes "[Tailor]";
mes "i'll wait for you... good luck";
set Q_227,1;
close;
ep_1:
if (countitem(611) >= 30) goto reward;
mes "[Tailor]";
mes "done?";
close;
reward:
mes "[Tailor]";
mes "oo thx... here is your glove";
next;
Delitem 611,30;
Getitem 563,1;
set Q_227,2;
close;
done:
mes "[Tailor]";
mes "enjoy your new gloves";
close;
no:
mes "[Tailor]";
mes "T_T";
close;
}
Re: (Suggestion) Winter Gloves
Posted: 23 Mar 2008, 16:24
by Shaili (a.k.a. tds)
I'm writing a little more complex script: but thanks anyway ^^
Re: (Suggestion) Winter Gloves
Posted: 23 Mar 2008, 19:50
by Blamoo
okay... good luck... pm me if u need help to test
Re: (Suggestion) Winter Gloves
Posted: 24 Mar 2008, 19:55
by Liriel
This sounds fun! Any eta yet?
Thanks! You guys work really hard on this game, and I for one appreciate it. My family loves the game.
~L
Re: (Suggestion) Winter Gloves
Posted: 24 Mar 2008, 21:31
by Shaili (a.k.a. tds)
Beta should be too 'spoilering'. I'm working on it with QOAL's help. We have to test it, but the script is done
