Thing_Stop
From ZDoom Wiki
void Thing_Stop (int tid);
Usage
This stops the specified actor's current movement by setting its acceleration and speed to 0.
Example
script 1 (void)
{
Print(s:"STOP RIGHT THERE CRIMINAL SCUM!");
Thing_Stop(0);
SetPlayerProperty(0, 1, PROP_TOTALLYFROZEN);
}

