simple stab script for zmud

... A place to ask for help on any topic whether it be starting out to player killing to IT issues.
Post Reply
macroth
Posts: 86
Joined: Mon Mar 16, 2015 6:55 pm

simple stab script for zmud

Post by macroth » Thu Mar 25, 2021 8:02 pm

I'm looking for a simple stab script for zmud, lost mine when comp died. I looked at the one in the archive, bit to much for me i think. You know simple mind thing hehe.

Kordin
Posts: 712
Joined: Wed Feb 18, 2015 5:17 pm

Re: simple stab script for zmud

Post by Kordin » Fri Mar 26, 2021 2:32 am

Found this in my files, don't remember who made it but it looks simple enough...

Code: Select all

#DELCLASS {StabberScript}
#CLASS {StabberScript}
#ALIAS tar {StabTarget=%1;#SHOW %ansi(bold,cyan)Stab Target set to @StabTarget}
#ALIAS tar2 {StabTarget2=%1;#SHOW %ansi(bold,cyan)Stab Target 2 set to @StabTarget2}
#ALIAS unstab {#SHOW deleting stabber script;#DELCLASS {StabberScript}}
#VAR StabTarget {human}
#VAR StabTarget2 {calippo}
#KEY F1 {hide;bac h.@StabTarget}
#KEY F2 {bac h.@StabTarget}
#KEY F3 {hide;bac h.@StabTarget2}
#KEY F4 {bac h.@StabTarget2}
#KEY F5 {#T+ DlineStabTrigger;flee}
#TRIGGER {You panic and attempt to flee!} {hide;bac @stabTarget;#T- DlineStabTrigger} "DlineStabTrigger"
#CLASS 0
#T- DlineStabTrigger

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

Re: simple stab script for zmud

Post by Mhaliah » Fri Mar 26, 2021 10:57 am

I just want to know what Calippo did to you Kordin

macroth
Posts: 86
Joined: Mon Mar 16, 2015 6:55 pm

Re: simple stab script for zmud

Post by macroth » Sat Mar 27, 2021 11:32 am

can't get it to work :(
guess I need a 1 target script if its still out there

Meren
Posts: 277
Joined: Tue Feb 06, 2018 10:45 pm

Re: simple stab script for zmud

Post by Meren » Sat Mar 27, 2021 11:49 am

You asked for simple.

Code: Select all

#CLASS {Targetting}
#ALIAS 2 {kill @target}
#ALIAS . {charge h.@target}
#ALIAS 3 {kill h.@target}
#ALIAS y {backstab h.@target}
#ALIAS 0 {bash @target}
#ALIAS tar {
  #VAR target {%1}
  #SAY Target set to @target.
}
#VAR target {whatever}
#CLASS 0

Post Reply