Added PnP Dire Rat.
Added PnP Dire Rat.
This commit is contained in:
15
nwn_dark_sun/dante_db.nss
Normal file
15
nwn_dark_sun/dante_db.nss
Normal file
@@ -0,0 +1,15 @@
|
||||
string GetCampaignVariableName(object oPlayer)
|
||||
{
|
||||
string sAccountName = GetPCPlayerName(oPlayer);
|
||||
string sCDKey = GetPCPublicCDKey(oPlayer);
|
||||
string sName = GetName(oPlayer);
|
||||
string sVariable = sCDKey;
|
||||
sVariable += IntToString(GetStringLength(sAccountName));
|
||||
sVariable += GetStringLeft(sAccountName, 6);
|
||||
sVariable += IntToString(GetStringLength(sName));
|
||||
sVariable += GetStringLeft(sName, 6);
|
||||
|
||||
return GetStringUpperCase(sVariable);
|
||||
}
|
||||
|
||||
//void main () {}
|
Reference in New Issue
Block a user