Did anyone notice that CA commented out two verbs from the JKSpecs' multiplayer list? They were:
GetPlayerNum()
GetPlayerThing()
Both take one parameter and return an integer. My theory is that players in a game are indexed. IE, the host is 0, the second player is 1, the third is 2, etc.
In that case:
index_num=GetPlayerNum(thing_num);
thing_num=GetPlayerThing(index_num);
SP testing seems to prove this, but it really needs to be tested in Multiplayer. And unfortuneatly, I can't do that right now.
Could someone spare the time?
[This message has been edited by SaberMaster (edited January 02, 2002).]
GetPlayerNum()
GetPlayerThing()
Both take one parameter and return an integer. My theory is that players in a game are indexed. IE, the host is 0, the second player is 1, the third is 2, etc.
In that case:
index_num=GetPlayerNum(thing_num);
thing_num=GetPlayerThing(index_num);
SP testing seems to prove this, but it really needs to be tested in Multiplayer. And unfortuneatly, I can't do that right now.
Could someone spare the time?
[This message has been edited by SaberMaster (edited January 02, 2002).]