Quote:
Originally Posted by fysiks
PHP Code:
new sz_command[6] = "+jump"
set_task(0.3, "ssTask", id, sz_command, sizeof(sz_command), "a", iSsCount)
public ssTask(sz_command[], id) // this needs to be like this iirc.
{
client_cmd(id, sz_command)
}
|
THANKS! i put that in and it compiled correctly. I'll test it when i can get a chance.
Quote:
Originally Posted by fysiks
They allow you to submit parameters to the function out of order and skip others as long as the ones you skip have default values.
|
neato, does this work for any function? including one of the functions within my code, or is that just for amxx stock functions?