diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/lucas.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/npc/001-1/lucas.txt b/npc/001-1/lucas.txt index 8d8c2715..225b14d7 100644 --- a/npc/001-1/lucas.txt +++ b/npc/001-1/lucas.txt @@ -6,7 +6,16 @@ 001-1,59,44,0 script Lucas#001-1 NPC_LUCAS,{ - villagertalk; + function randomTalk { + if (Repeat_NPC_lock <= gettimetick(2)) + { + Repeat_NPC_lock = gettimetick(2) + 2; + debugmes "ACCEPTED"; + villagertalk; + } + } + + randomTalk; closedialog; close; |