Initial upload
Initial upload
This commit is contained in:
16
_module/nss/givedabomb.nss
Normal file
16
_module/nss/givedabomb.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
//Put this script OnEnter
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetEnteringObject();
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
|
||||
if (GetItemPossessedBy(oPC, "dabomb")!= OBJECT_INVALID)
|
||||
return;
|
||||
|
||||
CreateItemOnObject("dabomb", oPC);
|
||||
|
||||
FloatingTextStringOnCreature("You have been given the Da Bomb, have fun. :)", oPC);
|
||||
|
||||
}
|
Reference in New Issue
Block a user