Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

44 lines
1.4 KiB
Plaintext

// In this code, we will say wether the item aquired was on a logon
// attempt, a normal addition, or a relog.
// The OnItemAquire event would use this.
void main()
{
// Get item aquired
object oItem = GetModuleItemAcquired();
// Who by?
object oPC = GetModuleItemAcquiredBy();
object oPC2 = GetItemPossessor(oItem);
// Who was it taken from?
object oLostBy = GetModuleItemAcquiredFrom();
// If oLostBy is invalid, we must have logged in - we are not
// taking this from anyone
if(!GetIsObjectValid(oLostBy) || oLostBy == oPC2)
{
// Is it a relog in or not?
// It will be if oPC is invalid
if(!GetIsObjectValid(oPC))
{
// It is a relog, we can use oPC2 as the person who
// reloged in with this item to send the message to.
SendMessageToPC(oPC2, "You have relogged in carrying the item: " + GetName(oItem));
}
else
{
// Not a relog, a normal login, we can use oPC to send
// a message to.
// * Note: oPC2 is always valid to use
SendMessageToPC(oPC, "You just logged in, carrying the item: " + GetName(oItem));
}
}
else
{
// This fires when it is a normal case of the event
// and so oPC can be used to send the message.
// * Note: oPC2 is always valid to use
SendMessageToPC(oPC, "You have aquired the item: " + GetName(oItem));
}
}