index 53788575f6b..31bdc7df6c6 100644 --- a/x_/x_sfscript.nss +++ b/x_/x_sfscript.nss @@ -582,15 +582,15 @@ void PrepareToDestroy(object oObject); int GetScriptExecuteStackSize(); int GetScriptNameByExecuteIndex(int nExecuteIndex); int GetActionGroupId(object oObject, int nAction); int GetActionParamCount(object oObject, int nAction); int GetActionParamType(object oObject, int nAction, int nParam); -int GetActionParamValueInt(object oObject, int nAction, int nParam); -float GetActionParamValueFloat(object oObject, int nAction, int nParam); -object GetActionParamValueObject(object oObject, int nAction, int nParam); -string GetActionParamValueString(object oObject, int nAction, int nParam); -location GetActionParamValueLocation(object oObject, int nAction, int nParam); +int GetActionParamInt(object oObject, int nAction, int nParam); +float GetActionParamFloat(object oObject, int nAction, int nParam); +object GetActionParamObject(object oObject, int nAction, int nParam); +string GetActionParamString(object oObject, int nAction, int nParam); +location GetActionParamLocation(object oObject, int nAction, int nParam); int GetActionInterruptable(object oObject, int nAction); void AddAction(object oObject, int nActionType, array aParams, int nActionGroupId=-1); void AddActionToFront(object oObject, int nActionType, array aParams, int nActionGroupId=-1); void AddActionAfterFront(object oObject, int nActionType, array aParams, int nActionGroupId=-1); void ActionDoCommandToBack(action aActionToDo, int nActionGroupId=-1); @@ -598,10 +598,10 @@ void ActionDoCommandToFront(action aActionToDo, int nActionGroupId=-1); void ActionDoCommandAfterFront(action aActionToDo, int nActionGroupId=-1); int GetCurrentActionType(object oObject); int GetCurrentActionGroupId(object oObject); int GetCurrentActionParamCount(object oObject); int GetCurrentActionParamType(object oObject, int nParam); -int GetCurrentActionParamValueInt(object oObject, int nParam); -float GetCurrentActionParamValueFloat(object oObject, int nParam); -object GetCurrentActionParamValueObject(object oObject, int nParam); -string GetCurrentActionParamValueString(object oObject, int nParam); -location GetCurrentActionParamValueLocation(object oObject, int nParam); +int GetCurrentActionParamInt(object oObject, int nParam); +float GetCurrentActionParamFloat(object oObject, int nParam); +object GetCurrentActionParamObject(object oObject, int nParam); +string GetCurrentActionParamString(object oObject, int nParam); +location GetCurrentActionParamLocation(object oObject, int nParam);