Queria saber se tem como proibir o drop de itens de raridade 5 do inventário 

Call PlayerMapDropItem(Index, InvNum, Amount)
If Item(GetPlayerInvItemNum(Index, InvNum)).Rarity = 5 Then
Call PlayerMsg(Index, "Não pode dropar este item", Red)
If Amount < 1 Or Amount > GetPlayerInvItemValue(Index, InvNum) Then Exit Sub
End If
|
|