Quote:
Originally Posted by LordOfNothing
Situation One si more efficently in more more situation
|
This answer is WRONG. You cannot compare them.
Quote:
Originally Posted by vamppa
ok so there is no such an thing as registering an client cvar?
|
No. You need to explain what you are trying to do if you want help.
Quote:
Originally Posted by vamppa
for client put in server I can easily add this to that right?
PHP Code:
public plugin_init()
{
set_task ( 20.0, "Taskworker", 50, "", 0);
}
public client_putinserver(id)
{
firsTtask(id)
}
public firsTtask(id)
{
// code here..
}
public Taskworker ()
{
new players[32], numplayers, id;
get_players ( players, numplayers );
for ( new i=0; i<numplayers; i++ ) {
id=players[i];
firsTtask( id );
}
}
</span></span>
|
Probably not. It will depend on what you are trying to do. In most situations, that will not work correctly.
__________________