diff options
author | Wombat <hpwombat@yahoo.com> | 2010-08-18 21:02:01 -0400 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2010-08-18 21:02:01 -0400 |
commit | 0b9235d0865509feb9ef97aa197204293cee0b1f (patch) | |
tree | 719ddcf0441486774d0b827fb5a36e7e0a5b7ec8 /npc/001-1_Tulimshar/vincent.txt | |
parent | 75dfdd443d6dbe9bd556debeb1c50d3000d95967 (diff) | |
download | serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.gz serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.bz2 serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.xz serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.zip |
Low Level Tulimshar Release
News, Small Fixes, Tulimshar Related Quests, Sandstorm Mob Changes
Expensive Hurnscald Warp NPC
Diffstat (limited to 'npc/001-1_Tulimshar/vincent.txt')
-rw-r--r-- | npc/001-1_Tulimshar/vincent.txt | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/npc/001-1_Tulimshar/vincent.txt b/npc/001-1_Tulimshar/vincent.txt index ba3bec00..b2f2e98b 100644 --- a/npc/001-1_Tulimshar/vincent.txt +++ b/npc/001-1_Tulimshar/vincent.txt @@ -1,8 +1,15 @@ // 001-1.gat,135,42,0 script Vincent 113,{ - if(Bugleg == 2) goto L_Done; - if(Bugleg == 1) goto L_Progress; + if (TMW_Quest >= 10) goto L_Done; + if (TMW_Quest == 9) goto L_Progress; + if (TMW_Quest == 8) goto L_Start; + + mes "[Vincent]"; + mes "\"I'm making an action figure. I'm almost done with it.\""; + close; + +L_Start: set @TEMP, rand(4); if(@TEMP == 0) goto L_Opening1; @@ -44,7 +51,7 @@ L_Ask: close; L_Sure: - set Bugleg, 1; + set TMW_Quest, 9; set @TEMP,rand(4); if(@TEMP == 0) goto L_Req1; if(@TEMP == 1) goto L_Req2; @@ -94,7 +101,7 @@ L_Have: if(countitem("BugLeg") < 10) goto L_Progress; delitem "BugLeg", 10; set zeny, zeny + 1000; - set Bugleg, 2; + set TMW_Quest, 10; mes "[Vincent]"; mes "\"Here you go, a little of my appreciation!\""; |