diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-08-20 12:25:41 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-08-22 11:45:09 -0400 |
commit | 2c87bb38c881639bed963e7933a1e9d9c2e8e6a3 (patch) | |
tree | d9e26c7592316293f333a7384c6f9a92b2afe8bd /npc/001-1/merlin.txt | |
parent | e9c90337a6057b66faad6759ff418e8a5f162cfe (diff) | |
download | serverdata-2c87bb38c881639bed963e7933a1e9d9c2e8e6a3.tar.gz serverdata-2c87bb38c881639bed963e7933a1e9d9c2e8e6a3.tar.bz2 serverdata-2c87bb38c881639bed963e7933a1e9d9c2e8e6a3.tar.xz serverdata-2c87bb38c881639bed963e7933a1e9d9c2e8e6a3.zip |
fix the npc talk lock mechanism, make some other npcs use it
Diffstat (limited to 'npc/001-1/merlin.txt')
-rw-r--r-- | npc/001-1/merlin.txt | 43 |
1 files changed, 8 insertions, 35 deletions
diff --git a/npc/001-1/merlin.txt b/npc/001-1/merlin.txt index d970f537..0d9a8b30 100644 --- a/npc/001-1/merlin.txt +++ b/npc/001-1/merlin.txt @@ -6,44 +6,17 @@ 001-1,73,128,0 script Merlin NPC_MERLIN,2,2,{ - function randomDialogue { - closedialog; - - .@r = rand (6); - if (.@r == 0) - { - npctalk3 l("Fish, come and see my fish!"); - } - else if (.@r == 1) - { - npctalk3 l("They are fresh, they are good!"); - } - else if (.@r == 2) - { - npctalk3 l("Fresh from the sea and cheap!"); - } - else if (.@r == 3) - { - npctalk3 l("Come, come and see!"); - } - else if (.@r == 4) - { - npctalk3 l("They are fresh!"); - } - else - { - npctalk3 l("Fish is good for the brain!"); - } - close; - } - OnTouch: - if (Repeat_NPC_lock <= gettimetick(2)) + switch(rand(6)) { - Repeat_NPC_lock = gettimetick(2) + 1; - randomDialogue; + case 0: npctalkonce(l("Fish, come and see my fish!")); break; + case 0: npctalkonce(l("They are fresh, they are good!")); break; + case 0: npctalkonce(l("Fresh from the sea and cheap!")); break; + case 0: npctalkonce(l("Come, come and see!")); break; + case 0: npctalkonce(l("They are fresh!")); break; + default: npctalkonce(l("Fish is good for the brain!")); } - close; + end; OnInit: .sex = G_MALE; |