Advertisement
MrTrala

Buffs

Jan 26th, 2016
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.66 KB | None | 0 0
  1. --[[
  2.     Auto Buff for ArchLightOnline
  3.     Version 1.5
  4.     Created by Mr Trala
  5. ]]
  6.  
  7. local config = {
  8.  
  9.     leaderName = {"Chiro Lavir", "Lord Guardian", "Mr Trilo", "Mr Trala", "Mr Trolo", "Synnical", "Lord Archer", "Lord Sorcerer", "Troke Smees", "Saul Pallavicino", "Raged", "Lord Archer", "Sir Demonic", "Dimige"},   -- Name of your leaders.
  10.     Exaus = 2200,   -- Don't move this shit.
  11.     Words = {"Buff me", "buff me", "buff", "Buff my shit", "buff my shit", "buff me niga", "buff me nigga", "you sux", "can you buff me?", "buff me please", "buff?", "buff his ass", "please buff"},   --  Word that your leader need to say to start buffing.
  12.     Thx = {"Thx <3", "thx", "thank you", "thx <3", "so lovely", ":*", "thanks", "thanks nigga'"},
  13.     Insult = {"Insult this nigga", "hmmm", "what about no?", "Defend me"},
  14.     Lucky = {"My luck", "Lucky", "My luck number", "luck number", "lucky number", "number", "luck", "lucky", "My lucky number please", "my lucky number pls", "my luck", "my number", "my lucky number please"},
  15.     Love = {"i love you", "love ya", "i fucking love you", "I love you"},
  16.     Fuck = {"fuck you", "Fuck you", "Fuck you niga", "fuck you niga", "fuck you nigga", "Fuck you nigga"},
  17.     Gay = {"Uruel is gay."}
  18. }
  19.  
  20. local spells = {
  21.  
  22.     spell1 = "utori mas vita sio",
  23.     spell2 = "utamo mas vita sio",
  24.     spell3 = "utito mas vita sio",
  25.     spell4 = "utura mas vita sio"
  26.  
  27. }
  28.  
  29. LocalSpeechProxy.OnReceive("Buffs", function(proxy, mtype, speaker, level, text)
  30.     if (table.find(config.Words, text)) and (table.find(config.leaderName, speaker)) then
  31.         Self.Cast(spells.spell1)
  32.         wait(config.Exaus)
  33.         Self.Cast(spells.spell2)
  34.         wait(config.Exaus)
  35.         Self.Cast(spells.spell3)
  36.         wait(config.Exaus)
  37.         Self.Cast(spells.spell4)
  38.         wait(100)
  39.         Self.Say("You are buffed nigga~", 10)
  40.        
  41.     elseif (table.find(config.Thx, text)) and (table.find(config.leaderName, speaker)) then
  42.         Self.Say("You are welcome babe <3", 10)
  43.        
  44.     elseif (table.find(config.Insult, text)) and (table.find(config.leaderName, speaker)) then
  45.         Self.Say("Go and die you meani and leave my senpai alone >:C", 1)
  46.        
  47.     elseif (table.find(config.Lucky, text)) and (table.find(config.leaderName, speaker)) then
  48.         Self.Say('Your lucky number is '..math.random(1, 999)..'.')
  49.         sleep (1500)
  50.        
  51.     elseif (table.find(config.Love, text)) and (table.find(config.leaderName, speaker)) then
  52.     Self.Say('Yeah well... I don\'t, get lost you creepy.')
  53.         sleep (1500)
  54.        
  55.     elseif (table.find(config.Fuck, text)) and (table.find(config.leaderName, speaker)) then
  56.     Self.Say('Get lost you meani.')
  57.         sleep (1500)
  58.        
  59.     elseif (table.find(config.Gay, text)) and (table.find(config.leaderName, speaker)) then
  60.     Self.Say('Indeed he is.')
  61.         sleep (1500)
  62.     end
  63. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement