I need a simple targeting scrript for Zmud!

... A place to ask for help on any topic whether it be starting out to player killing to IT issues.
Post Reply
Alaina
Posts: 324
Joined: Thu Sep 17, 2015 7:21 am
Location: New York City

I need a simple targeting scrript for Zmud!

Post by Alaina » Thu Mar 24, 2016 12:44 pm

I used to use a very simple targeting script back in the day. All I did was type 'ta dark' and all my aliases changed target to dark, etc.

Does anyone else use a very short and simple targeting script? I don't need to be able to alias multiple targets, as I was always comfortable just quickly changing targets between multiple enemies using the old script.

Taziar
Posts: 961
Joined: Sat Mar 21, 2015 10:28 pm

Re: I need a simple targeting scrript for Zmud!

Post by Taziar » Thu Mar 24, 2016 8:32 pm

House of Medakan scripts if you want something more in depth.

Code: Select all

#CLASS {SimpleTargets}
#ALIAS ta {
	#VAR targetSimple %1
	#ECHO {targetSimple set as: %1}
	}
#VAR targetSimple {}
#CLASS 0
Type ta <target> to set target variable.
Place @targetSimple in any alias you want target to be set to.
Delete #ECHO line of code if you do not want echo confirmation.

Depending on how you set up your alias:
If @targetSimple doesn't seem to work try placing " " around variable in your alias.
-Example: #ALIAS kt {kill "@targetSimple"}

Taziar Medakan [Rising Sun Blademaster]

Alaina
Posts: 324
Joined: Thu Sep 17, 2015 7:21 am
Location: New York City

Re: I need a simple targeting scrript for Zmud!

Post by Alaina » Fri Mar 25, 2016 9:01 pm

Thank you so much! It works great :)

Mhaliah
Posts: 902
Joined: Wed Feb 25, 2015 11:48 am

Re: I need a simple targeting scrript for Zmud!

Post by Mhaliah » Mon Apr 11, 2016 7:05 pm

You might try using the #KEY command instead of an alias, this way you can just hit the key without having to hit enter too.

Post Reply