Advertisement
Guest User

Untitled

a guest
May 3rd, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Pattern: ^ch2(?: (.+))?$
  2. weapon_action_2 = matches[2]
  3. weapon_action_2 = string.title(weapon_action_2)
  4. cecho("\nChase action 2 is: " .. weapon_action_2 .. "\n")
  5.  
  6. Pattern: ^t(?: (.+))?$
  7. chase_target = matches[2]
  8. chase_target = string.title(chase_target)
  9. cecho("\nTarget is: " .. chase_target .. ".\n")
  10.  
  11. alias whatever to
  12. send(weapon_action_1.. " " ..chase_target)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement