public void Sleep(ScriptThread thread) { thread.Pause(thread.GetIntegerParameter(0)); }
public void LoadMapB(ScriptThread thread) { Engine.GlobalInstance.LoadMap(thread.GetStringParameter(0), ""); thread.Pause(0); // We just want to stop running until the map is loaded - This is a hackish way of doing that. }