mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 08:39:11 +00:00
16 lines
245 B
Ruby
16 lines
245 B
Ruby
|
|
# Intercepts the first npc action event.
|
|
on :event, :npc_action do |ctx, player, event|
|
|
if (event.option == 1)
|
|
# TODO check if player is not in pvp area
|
|
|
|
end
|
|
end
|
|
|
|
def dialogue(name, &block)
|
|
|
|
end
|
|
|
|
dialogue :banker_introduction do
|
|
#
|
|
end |