31 lines
430 B
Lua
31 lines
430 B
Lua
|
|
|
|
function NPC2_FunArenaInitiate()
|
|
|
|
dlg_text("Gamearena Funzo")
|
|
dlg_text("Oi! Greetings, fellow warrior. I'll be just standing here, looking at your pretty little butt, until Fyben gets more time to finish the work.")
|
|
dlg_menu("[ Alright! ]", "")
|
|
dlg_show()
|
|
|
|
end
|
|
|
|
function on_create_wave()
|
|
cprint("you created")
|
|
end
|
|
function on_join_wave()
|
|
cprint("you joined")
|
|
end
|
|
function on_leave_wave()
|
|
cprint("you left")
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|