Initial Upload
Initial Upload
This commit is contained in:
16
_module/nss/emote_rod_give.nss
Normal file
16
_module/nss/emote_rod_give.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
//Put this OnEnter
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetEnteringObject();
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
|
||||
if (GetItemPossessedBy(oPC, "playershandbook")!= OBJECT_INVALID)
|
||||
return;
|
||||
CreateItemOnObject("playershandbook", oPC);
|
||||
//////////////////////////////////////////////////////
|
||||
if (GetItemPossessedBy(oPC, "emotewand")!= OBJECT_INVALID)
|
||||
return;
|
||||
CreateItemOnObject("emotewand", oPC);
|
||||
}
|
Reference in New Issue
Block a user