Advertisement
Guest User

Untitled

a guest
Dec 30th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. =begin
  2. Phasing containers
  3. Kaldonis
  4. 15 Feb 2014 01:00:54
  5. =end
  6.  
  7. phaseTarget = script.vars[1]
  8.  
  9. #respond "I will try #{phaseTarget}"
  10.  
  11. fput "get #{phaseTarget} from my cloak"
  12. line=get
  13. if phaseTarget =~ /jacket/
  14. if line =~ /^You (grab|remove) a shifting .* #{phaseTarget}/
  15. multifput "drop my #{phaseTarget}","wear my #{phaseTarget}","get ebonwood ring from my case","wear my ebonwood ring","turn my ebonwood ring","remove my ebonwood ring","put ebonwood ring in my case"
  16. elsif line =~ /^You (grab|remove) .* #{phaseTarget}/
  17. multifput "wear my #{phaseTarget}","get ebonwood ring from my case","wear my ebonwood ring","turn my ebonwood ring","remove my ebonwood ring","put my ebonwood ring in my case"
  18. elsif line =~ /^Get what/
  19. multifput "close my #{phaseTarget}","get my ring from my case","wear my ring","turn my ring","remove my ring","put my ring in my case","remove my #{phaseTarget}","put #{phaseTarget} in my cloak"
  20. if mana>=4
  21. multifput "prep 704","cast my #{phaseTarget}"
  22. end
  23. end
  24. elsif phaseTarget =~ /belt/
  25. if line =~ /^You (grab|remove) a shifting .* #{phaseTarget}/
  26. multifput "drop my #{phaseTarget}","wear my #{phaseTarget}","turn my #{phaseTarget}"
  27. elsif line =~ /^You (grab|remove) .* #{phaseTarget}/
  28. multifput "wear my #{phaseTarget}","turn my #{phaseTarget}"
  29. elsif line =~ /^Get what/
  30. multifput "turn my #{phaseTarget}","remove my #{phaseTarget}","put #{phaseTarget} in my cloak"
  31. if mana>=4
  32. multifput "prep 704","cast my #{phaseTarget}"
  33. end
  34. end
  35. else
  36. if line =~ /^You (grab|remove) a shifting .* #{phaseTarget}/
  37. multifput "drop my #{phaseTarget}","wear my #{phaseTarget}","get key from my case","unlock my #{phaseTarget}","put key in my case","open my #{phaseTarget}"
  38. elsif line =~ /^You (grab|remove) .* #{phaseTarget}/
  39. multifput "wear my #{phaseTarget}","get key from my case","unlock my #{phaseTarget}","put key in my case","open my #{phaseTarget}"
  40. elsif line =~ /^Get what/
  41. multifput "close my #{phaseTarget}","get key from my case","lock my #{phaseTarget}","put key in my case","remove my #{phaseTarget}","put #{phaseTarget} in my cloak"
  42. if mana>=4
  43. multifput "prep 704","cast my #{phaseTarget}"
  44. end
  45. end
  46. end
  47. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement