playerSide – Talk
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
When is playerSide set to the correct value? is waitUntil {!isNull player} enough to ensure a correctly returned value? | When is playerSide set to the correct value? is waitUntil {!isNull player} enough to ensure a correctly returned value? | ||
> Yes. At mission start every unit is civilian for a brief moment from what I recall. So your waitUntil avoids faulty detection. Nothing else needed. --[[User:Kju|Kju]] 21:23, 23 June 2010 (CEST) | |||
Just make sure you do not do a waitUntil {!isNull player} on the server side, player is always null on the server. You might lock up your server like I did years ago. A safer way to go is the following | |||
if (!isDedicated && (player != player)) then { | |||
:waitUntil {player == player}; | |||
}; | |||
--[[User:ViperMaul|ViperMaul]] 05:48, 24 June 2010 (CEST) |
Latest revision as of 04:54, 24 June 2010
When is playerSide set to the correct value? is waitUntil {!isNull player} enough to ensure a correctly returned value? > Yes. At mission start every unit is civilian for a brief moment from what I recall. So your waitUntil avoids faulty detection. Nothing else needed. --Kju 21:23, 23 June 2010 (CEST)
Just make sure you do not do a waitUntil {!isNull player} on the server side, player is always null on the server. You might lock up your server like I did years ago. A safer way to go is the following
if (!isDedicated && (player != player)) then {
- waitUntil {player == player};
};
--ViperMaul 05:48, 24 June 2010 (CEST)