Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.39 KB | None | 0 0
  1. # This file is the foundation of the Ruby scripting syntax for Orchid.
  2. # Do not modify this file if you don't know what you're doing unless you want to break all your existing scripts.
  3.  
  4. def say(message)
  5.   interaction.Say(message)
  6. end
  7.  
  8. def npc(guid, &block)
  9.   interaction.InteractionManager.Scripts.Add(guid, block)
  10. end
  11.  
  12. def ask(question, &block)
  13.   interaction.Ask(question, block)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement