I trying to get a Ped to put there hands up. I set up a suspect to aim a gun at them, but the victim refuses to raise there hands. This is the code im using:
Clerk.Tasks.PutHandsUp(99999999 ^ 9999, Robber);
What language are you using?
in VB.net, the ^ operator raises the int on the left to the power on the right. The number is not infinity as google suggests, but is very large:
in VB.net, the maximum value of an int is: 2,147,483,647 (which is infinitely less than infinity)
Try this:
Clerk.Tasks.PutHandsUp(999999, Robber);
OR
Clerk.Tasks.PutHandsUp(int.MaxValue, Robber);
Things to check after trying that code...
1. Make sure that you are not calling the task constantly