I have another question concerning publicVariable command.
Check this out.
_ruin = _ruinType createVehicle [0,0,0];
_final = _finalType createVehicle [0,0,0];
_ruin setpos _pos;
_ruin setdir _dir;
sleep _time;
deletevehicle _ruin;
_final setpos _pos;
_final setdir _dir;
What happens is:
1. A ruin is created at pos [0,0,0]
2. The building of the ruin is created at pos [0,0,0]
3. The ruin is moves to location A.
4. The ruin turns in a direction
5. Time passes
6. Ruin is deleted
7. Building is move to location A
8. Building turns in a direction
Here is my problem:
When client A runs this script. He sees the ruin for 0.5 secs before it disapears. When time runs out, the building appears.
This only happens when client A runs the script.
When client B runs it, everything works and appears perfectly.
What happend to the ruin?