You would put them in your custom scripts for your module events. Take the "OnAcquireItem" event for example. You said you have some custom event scripts with lines like:
object oItem = GetItem......;
ExecuteScript(GetTag(oItem), OBJECT_SELF);
Well if you did something like this:
object oItem = GetItem......;
If (GetTag(oItem) == "geo_tent" ||
GetTag(oItem) == "xxxxxxx" ||
GetTag(oItem) == "xxxxxxxxxx") return;//this is what makes the script stop
ExecuteScript(GetTag(oItem), OBJECT_SELF);
Then the custom event script would just stop before the execute script line runs the tag script for your items.
Modifié par GhostOfGod, 07 septembre 2010 - 04:16 .