PDA

View Full Version : multi-setting teleport ring script



Sam
08-08-2010, 06:55 AM
I don't think these rings are common enough to warrant an upload to the repo, but here's a script I use for my 12 setting ring. Could be modified for a different amount of settings...

If I were awesome, I'd incorporate it into go2, which would be fucking sweet, but for now I just type "r #" to transport to that stored location..


myRing="black ring"
target=script.vars[0].to_i
if target != 0
current = (dothistimeout "tap my #{myRing}", 2, /->/).split(" ")[1].to_i

diff=(target - current).to_i

if diff > 6
diff = diff - 12
end
if diff < -6
diff = diff + 12
end

while diff != 0
if diff > 0
fput "push my #{myRing}"
diff = diff - 1
end
if diff < 0
fput "pull my #{myRing}"
diff = diff + 1
end
echo diff
end

fput "rub my #{myRing}"

else

respond "you need to tell me where you want to go!"

end

and here's the alias I call it with..


r => ;e start_script "blackring", ["\?"]

Inspire
08-08-2010, 07:55 AM
I wish I had a use for this script. :'(