Results 1 to 2 of 2

Thread: Pulling only designated players to their feet as well as a script that stands you up.

  1. #1

    Default Pulling only designated players to their feet as well as a script that stands you up.

    Looking to automatically lift up the people that I hunt with and not trying to lift someone to their feet when I come across someone in town or whatever.

    Also I would like to automatically stand up by myself.

  2. #2

    Default

    Quote Originally Posted by Intel View Post
    Looking to automatically lift up the people that I hunt with and not trying to lift someone to their feet when I come across someone in town or whatever.
    Code:
    loop{
    	GameObj.pcs.each { |pc|
    		if (pc.name == "PERSON A" or pc.name == "PERSON B") and pc.status =~ /prone/
    			waitrt?
    			put "pull #{pc}"
    		end
    	}
    	sleep 1
    }
    Quote Originally Posted by Intel View Post
    Also I would like to automatically stand up by myself.
    Code:
    loop{
    	if !standing?
    		until standing?
    			waitrt?
    			put "stand"
    			sleep 0.2
    		end
    	end
    	sleep 1
    }
    Last edited by Tgo01; 07-08-2014 at 05:37 PM.

Similar Threads

  1. Replies: 43
    Last Post: 08-19-2016, 08:56 PM
  2. Replies: 0
    Last Post: 09-29-2011, 02:54 PM
  3. Replies: 5
    Last Post: 08-25-2011, 05:28 PM
  4. Music stands
    By Amaron in forum Wanted
    Replies: 4
    Last Post: 11-02-2009, 10:45 PM
  5. Music stands:
    By Terminator X in forum Events and Invasions
    Replies: 11
    Last Post: 11-15-2005, 01:12 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •