Request !

10/25/2009 00:23 -Shunsui-#1
Hello Guys,

Iam searching on how i can Start Or Make so when an Item Is Droped It dissapears or That it is not allowed to be Droped Or That it Cant Be Traded

This is for LOTF/5017

Tnx,
10/25/2009 00:43 raidenx123#2
find the drop code, then put something like this:
Code:
if (ItemID = ID goes here)
{
DROP CODE
return;
}
else
{
DROP CODE
}
10/25/2009 00:44 Zion~#3
Quote:
Originally Posted by raidenx123 View Post
find the drop code, then put something like this:
Code:
if (ItemID = ID goes here)
{
DROP CODE
return;
}
else
{
DROP CODE
}
Wrong.
10/25/2009 00:50 raidenx123#4
im not a coder, so correct me then.
10/25/2009 01:18 Zion~#5
He simply has the edit the drop void in LOTF. Or whatever its called the way you did it was almost right but you forgot to make the item disappear which is something else.
10/25/2009 17:31 -Shunsui-#6
Well thanx raidenx123 atleast you got me on a Starting point,