Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function Disruptor(){
  2. if (!Orion.HaveTarget() ) {
  3. var disruptor = Orion.ObjAtLayer('22');
  4. if ( disruptor == null ) {
  5. var disruptor = Orion.ObjAtLayer('17');
  6. }
  7. if ( disruptor != null ) {
  8. Orion.Equip(disruptor.Serial() );
  9. Orion.CharPrint('self', '906', '-- trying to disrupt --');
  10. } else {
  11. Orion.CharPrint('self', '906', '--unable to disrupt--')
  12. }
  13. } else {
  14. Orion.CancelTarget();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement