Alangara_PRC8/_module/nss/ke_g_ibis_ga_flo.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

23 lines
514 B
Plaintext

/*
* Script generated by LS Script Generator, v.TK.0
*
* For download info, please visit:
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
*/
// Put this script OnUsed.
void main()
{
// Get the creature who triggered this event.
object oPC = GetLastUsedBy();
// Abort if the PC has the item "majesticflower".
if ( GetItemPossessedBy(oPC, "ibis_gaia") != OBJECT_INVALID )
return;
// Give "majesticflower" to the PC.
CreateItemOnObject("ibis_gaia", oPC);
}