
Originally Posted by
Intel
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
}

Originally Posted by
Intel
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
}