aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r--Scripts/init.lua12
1 files changed, 8 insertions, 4 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua
index fde6c86..1ae2efc 100644
--- a/Scripts/init.lua
+++ b/Scripts/init.lua
@@ -24,12 +24,16 @@ player = {
end
end,
JumpKeyReleased = function(self)
- game.dialog(30, 50, 400, 100)
- game.puts("dialog", 36, 52, "Hey. Hag?")
end,
MousePressed = function(self, mx, my)
- if mx > 30 and mx < 430 and my > 50 and my < 150 then
- game.dialogClear()
+ mp = game.uiToWorldCoord(mx, my)
+ if math.abs(mp.x - self.Position.x) < 1 and math.abs(mp.y - self.Position.y) < 1 then
+ game.dialog(30, 50, 400, 100)
+ game.puts("dialog", 36, 52, "What do you think you're doing?")
+ else
+ if mx > 30 and mx < 430 and my > 50 and my < 150 then
+ game.dialogClear()
+ end
end
end
},