diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-15 23:42:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-15 23:42:57 -0300 |
commit | 8ca983615194eebee04581c2a721510d7cbb230a (patch) | |
tree | a3294a9fa723345afbfcab54290b5799ce2725f8 /npc/012-1/lufix.txt | |
parent | 6c2eb4d10b18a7488c17b6d05b5fb75046eb2267 (diff) | |
download | serverdata-8ca983615194eebee04581c2a721510d7cbb230a.tar.gz serverdata-8ca983615194eebee04581c2a721510d7cbb230a.tar.bz2 serverdata-8ca983615194eebee04581c2a721510d7cbb230a.tar.xz serverdata-8ca983615194eebee04581c2a721510d7cbb230a.zip |
Lufix template
Diffstat (limited to 'npc/012-1/lufix.txt')
-rw-r--r-- | npc/012-1/lufix.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/012-1/lufix.txt b/npc/012-1/lufix.txt new file mode 100644 index 000000000..8647b3ab3 --- /dev/null +++ b/npc/012-1/lufix.txt @@ -0,0 +1,30 @@ +// TMW2 Script +// Author: +// Jesusalva +// Description: +// Hunt mouboos, Summer Quest + +012-1,68,74,0 script Lufix NPC_RAIJIN,{ + mesn; + if (season() == SUMMER) { + mesq l("Yay it's summer"); + } else { + mesq l("Aww it's not summer"); + } + close; + +OnInit: + .@npcId = getnpcid(0, .name$); + setunitdata(.@npcId, UDT_HEADTOP, CommunityShirt); + setunitdata(.@npcId, UDT_HEADMIDDLE, JeansChaps); + setunitdata(.@npcId, UDT_HEADBOTTOM, DeepBlackBoots); + setunitdata(.@npcId, UDT_WEAPON, BugSlayer); + setunitdata(.@npcId, UDT_HAIRSTYLE, 13); + setunitdata(.@npcId, UDT_HAIRCOLOR, 7); + + .distance=4; + .sex=G_MALE; + end; + +} + |