Skip to content

Uniquely id a player?

In NWN, we used to be able to link a player by their CD key and/or server vault name. I think both of those have changed. How do I keep track of a player's characters in EE?

Comments

  • dimecoindimecoin Member Posts: 15
    This retruns null:

    ` string sPCKey = GetPCPublicCDKey(oPC, TRUE);`
  • DazDaz Member Posts: 125
    Odd, GetPCPublicCDKey() should still work, it does for me.
  • NeverwinterWightsNeverwinterWights Member Posts: 339
    Confirmed it does still work. Just tested on a placeable:

    void main() { object oPC = GetLastUsedBy(); string sKey = GetPCPublicCDKey(oPC, TRUE); SendMessageToPC(oPC, sKey); }
Sign In or Register to comment.