diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-18 04:30:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-18 04:30:55 -0300 |
commit | a3a4da6faae9403a198ac6c0b60c827cfc393a15 (patch) | |
tree | a0d8614017f0246bc1b5aac4c7bce3d0db90fab1 /npc | |
parent | 4c1c006f2a500fcc00e0c06408931464346fa1bc (diff) | |
download | serverdata-a3a4da6faae9403a198ac6c0b60c827cfc393a15.tar.gz serverdata-a3a4da6faae9403a198ac6c0b60c827cfc393a15.tar.bz2 serverdata-a3a4da6faae9403a198ac6c0b60c827cfc393a15.tar.xz serverdata-a3a4da6faae9403a198ac6c0b60c827cfc393a15.zip |
Sorfina - Auto equip the items when skipping tutorial.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/029-2/sorfina.txt | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index d9353e4d..8bb911fb 100644 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -261,15 +261,18 @@ L_SkipTut: L_Bye: mes "[Sorfina]"; mes "\"Alright, if you say so. But take at least this. See you later.\""; - getitem "Knife", 1; - getitem "SlingShot", 1; - getitem "SlingBullet", 500; - getitem "HitchhikersTowel", 1; - getitem "CottonShirt", 1; - getitem "RaggedShorts", 1; + getitem Knife, 1; + getitem SlingShot, 1; + getitem SlingBullet, 500; + getitem HitchhikersTowel, 1; + getitem CottonShirt, 1; + getitem RaggedShorts, 1; set Zeny, Zeny + 35; // tanisha gives 5 Zeny QL_BEGIN = 8; - goto L_close; + equip(CottonShirt); + equip(RaggedShorts); + equip(Knife); + close; L_close: close; |