Advertisement
MrTrala

Exevo Ring For Arch

Aug 3rd, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. --[[
  2.     'Exevo Ring' For ArchlightOnline
  3.     Version 1.0
  4.     Created by Mr Trala
  5. ]]
  6.  
  7. config = {
  8.     Words = 'Exevo Ring', -- The words you need to use to conjure your ring.
  9.     Exaus = 0 -- Time in secs to keep checking, put it in 0 if you have bad connection, 1 if you have a good one.
  10. }
  11.  
  12. Module.New('ExRING', function(mod)
  13.     if Self.Ring().id == 0 then
  14.         Self.Say(config.Words)
  15.     end
  16.     mod:Delay((config.Exaus * 1000), (config.Exaus * 1000) + 100)
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement