Project-Tacoma / PublicMission

BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Session for Client #20

Open flaver12 opened 6 years ago

flaver12 commented 6 years ago

Hier ein kleines Bsp(von reddit geklaut)

Client

[[paramsArray],owner player] remoteExec["myFunc",2];
myHint =  { 
hint str _this;
};

Server

myFunc = {
_params = _this select 0;
_clientID = _this select 1;

your code....

_sendMeBackToClient remoteExec["myHint",_clientID ];

};