Yeah...I'm new to the whole scripting thing and was wondering how exactly you'd go about getting a targetting system in there. I found a little something for it, just not sure how to get it into the client.
alias name: atar
commands: #additem preylist %1;#var prey %1
that adds into your list preylist all the people you after
then sets the new add as your primary target
alias name: dtar
commands: #var counter %numitems(@preylist);#loop %numitems(@preylist) {#say {<%i>: <%item(@preylist,<%i>)>}}
that displays the targets on your prompt
and the number assigned to them
alias name: star
commands: #var prey <%item(@preylist,%1)>
switches between the targets
alias name: ctar
commands : #loop %numitems(@preylist) {#delnitem preylist (1)}
that clears your preylist
That's what I found. Now..is that right? How do I do this?
alias name: atar
commands: #additem preylist %1;#var prey %1
that adds into your list preylist all the people you after
then sets the new add as your primary target
alias name: dtar
commands: #var counter %numitems(@preylist);#loop %numitems(@preylist) {#say {<%i>: <%item(@preylist,<%i>)>}}
that displays the targets on your prompt
and the number assigned to them
alias name: star
commands: #var prey <%item(@preylist,%1)>
switches between the targets
alias name: ctar
commands : #loop %numitems(@preylist) {#delnitem preylist (1)}
that clears your preylist
That's what I found. Now..is that right? How do I do this?