ListenForPickup() private static method

private static ListenForPickup ( NPCKilledCondition condition ) : void
condition NPCKilledCondition
return void
Exemplo n.º 1
0
 private NPCKilledCondition(short npcId)
     : base("NPC_KILLED_" + (object)npcId)
 {
     this._npcIds = new short[1] {
         npcId
     };
     NPCKilledCondition.ListenForPickup(this);
 }
Exemplo n.º 2
0
 private NPCKilledCondition(short[] npcIds)
     : base("NPC_KILLED_" + (object)npcIds[0])
 {
     this._npcIds = npcIds;
     NPCKilledCondition.ListenForPickup(this);
 }
 private NPCKilledCondition(short[] npcIds) : base(string.Concat("NPC_KILLED_", npcIds[0]))
 {
     this._npcIds = npcIds;
     NPCKilledCondition.ListenForPickup(this);
 }
 private NPCKilledCondition(short npcId) : base(string.Concat("NPC_KILLED_", npcId))
 {
     this._npcIds = new short[] { npcId };
     NPCKilledCondition.ListenForPickup(this);
 }