ok i need to set a delay before the next line is called, i tried using a loop with a high number, didnt seem to affect it. this is my code
Code:
ns_set_exp(id, (ns_get_exp(id) + 1000))
client_cmd(id, "impulse 114") //change to gorge
// need a delay here
ns_set_exp(id,(ns_get_exp(id) - 1000))
without the delay the line after the comment gets executed before the client_cmd. Making the client_cmd never execute.
i tried this as a delay with no luck
Code:
for (i = 1; i <= 30000; i++)
{ //just a delay
}
tried 300000 in there too still nothing.
any way to cause a delay?