Project

General

Profile

EQ2_onSellItem (Event)

Description

The EQ2_onSellItem event will fire every time you sell an item to an NPC merchant

Arguments

  1. string ItemName
  2. int Quantity
  3. int LinkID
  4. string ItemLinkString

Usage

 Event[EQ2_onSellItem]:AttachAtom[MyAtom]
 

...

 atom MyAtom(string ItemName, int Quantity, int LinkID, string ItemLinkString)
 {
    ;do stuff
 }