diff options
Diffstat (limited to 'npc/009-5/manastone.txt')
-rw-r--r-- | npc/009-5/manastone.txt | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/npc/009-5/manastone.txt b/npc/009-5/manastone.txt new file mode 100644 index 000000000..55fd811c1 --- /dev/null +++ b/npc/009-5/manastone.txt @@ -0,0 +1,52 @@ +// TMW2 Script +// Author: +// Jesusalva +// Description: +// TODO + +009-5,0,0,0 script Mana Stone NPC_MANA_STONE,{ + + if (BaseLevel < 40) goto L_NotWorthy; + hello; + end; + +L_NotWorthy: + percentheal -70+BaseLevel, -100+BaseLevel; + npctalk3 "You are not worthy!"; + end; + +OnInit: + movenpc .name$, rand(200), rand(200); + .sex = G_OTHER; + .distance = 5; + end; + +OnClock0030: +OnClock0120: +OnClock0210: +OnClock0300: +OnClock0450: +OnClock0540: +OnClock0630: +OnClock0720: +OnClock0810: +OnClock0900: +OnClock1050: +OnClock1140: +OnClock1230: +OnClock1320: +OnClock1410: +OnClock1500: +OnClock1650: +OnClock1740: +OnClock1830: +OnClock1920: +OnClock2010: +OnClock2100: +OnClock2250: +OnClock2340: + movenpc .name$, rand(200), rand(200); + npctalk l("Those who are worthy, may get my magic. For the others, death awaits!"); + end; + +} |