View Single Post
11-16-05, 06:01 AM   #7
Bravos
A Kobold Labourer
 
Bravos's Avatar
Join Date: Nov 2005
Posts: 1
Originally Posted by spotpuff
Is there any way to add a Rogue-only "RIPOSTE!" message when parrying in combat?

I currently have the following in sct_event_config.lua


[22] = {name="Riposte!", search="(.+) attacks. You parry.", r=0/256, g=0/256, b=256/256, iscrit=1, class={"Rogue"}},

IT doesn't work; all I get is "Parry!" I ONLY WANT THIS FOR ROGUES! Not warrior/shaman.
Code:
[22] = {name="Riposte!", search="You parry", r=0/256, g=0/256, b=256/256, iscrit=1, class={"Rogue"}},
Try using less detail in your query and also make sure that [22] isn't already being used by something else. The reason you get "Parry!" is because that is hardcoded in the sct.lua and not anything you did.

Also make sure your event line isn't commented out.
  Reply With Quote