Scala InfoChannel Get Player Name
Posted 21 October, 2008 in Other Stuff
In Scala InfoChannel if you want to get the name of the player there are two ways to do this:
1.
The variable Billing.PlayerName will return it.
Ex: playername = Billing.PlayerName;
2.
If using VBScript the following will get the player name
Set WshNetwork = CreateObject(“WScript.Network”)
playername = WshNetwork.ComputerName




