ScriptUO
Official ScriptUO EasyUO Scripts => Scripting Chat => Topic started by: DeadIssue2 on March 29, 2009, 01:18:49 PM
-
Do all corpses share the same ID??
-
Pretty much.
-
you might be able to use event property to identify different corpses
-
Would you mind explaining what you mean by that Kham ? Kinda new here and I do not understand how to use event property in this manner.
-
No they don't share the same ID.
They do share the same ItemTYPE. :)
The only way to distinguish them between different types of monster corpses is by throwing an event property on the corpse itemid and reading the output of #property to see which kind of creature they are like Khameleon said.
-
And a corpse says what???
MoOoooOooooOooO!
No they don't share the same ID.
They do share the same ItemTYPE. :)
Lol, I accidentally say #FINDID for that as well. Happens to the best of us. :)
-
I knew what you both meant I just wanted to be annoying :D
-
what I mean is.. something like this
Set %Corpse (Whatever the type is)
Finditem %Corpse
if #Findkind <> -1
Event Property #FindID
Wait 5
if (Monster Name) in #Property
do what ever it is that you need to do.
I hope that clarifies things :P
-
Nice I did not know that would work in that manner. That seems handy indeed. Thank you very much.