API

From Valve Developer Community
Jump to: navigation, search
English (en)Русский (ru)中文 (zh)Translate (Translate)
Note.png注意: This page is automatically generated. Any changes may be overwritten


从Lua 获取 DOTA 2 scripts 接口

Lua 是一种动态类型语言dynamically typed,意味着在编写代码时你不需要显式地声明变量的类型。Lua 会在运行时自动推断变量的类型。然而,DOTA 2的引擎主要是用 C++ 编写的,C++ 是一种静态类型语言statically typed,要求程序员在编译时明确变量的类型。

当你使用 Lua 脚本与 DOTA 2 的 C++ API 交互时,由于这两种语言在类型处理上的差异,你需要特别注意你传递给 API 的数据类型。如果你尝试向 API 函数传递错误的数据类型,你将在 Vconsole(游戏内的控制台)中收到一个错误消息,告诉你传递了什么以及它期望的是什么类型。

例如,如果某个 API 函数期望接收一个整数作为参数,但你错误地传递了一个字符串,那么游戏引擎将无法正确处理这个参数,并且会在 Vconsole 中给出一个错误提示,告诉你期望一个整数但却收到了一个字符串。

因此,当你使用 Lua 调用 DOTA 2 的 C++ API 时,确保你了解每个函数期望的参数类型,并相应地传递正确的数据类型是非常重要的。这有助于避免运行时错误,并确保你的代码能够按预期工作。

Global

全局函数,可以被任何类使用。

函数名 函数原型 解释
AddFOWViewer(en) void AddFOWViewer(int int_1, Vector Vector_2, float float_3, float float_4, bool bool_5) 为指定队伍增加临时视野 ( nTeamID, vLocation, flRadius, flDuration, bObstructedVision)
AngleDiff(en) float AngleDiff(float ang1, float ang2) 返回两个偏航角度之差
AppendToLogFile(en) void AppendToLogFile(string a, string b) 在服务器日志文件上增加一个string
ApplyDamage(en) float ApplyDamage(handle DamageTable) 对单位造成伤害,Table输入:victim, attacker, damage, damage_type, damage_flags, ability
AxisAngleToQuaternion(en) Quaternion AxisAngleToQuaternion(Vector a, float b)(vector,float) 构造一个四元数,表现出围绕给定的vector 轴线的旋转角
CalcClosestPointOnEntityOBB(en) Vector CalcClosestPointOnEntityOBB(handle handle_1, Vector Vector_2) 计算实体的OBB上最接近的两个点。
CalcDistanceBetweenEntityOBB(en) float CalcDistanceBetweenEntityOBB(handle handle_1, handle handle_2) 计算两个实体的OBB间距离。如果返回值为负,代表输入值有错误。 返回值为0则代表OBB互相重叠。
CancelEntityIOEvents(en) void CancelEntityIOEvents(ehandle a) 为特定的实体创建所有输入/输出事件
ClearTeamCustomHealthbarColor(en) void ClearTeamCustomHealthbarColor(int int_1)( teamNumber ) 清除自定义血条颜色。
CreateEffect(en) bool CreateEffect(handle a) 传递table - 输入:实体,效果
CreateHeroForPlayer(en) handle CreateHeroForPlayer(string unitName, handle player) 用DOTA英雄的dota_npc_units.txt中的名字创建它并把它设为给定玩家的控制英雄
CreateHTTPRequest(en) handle CreateHTTPRequest(string string_1, string string_2) 生成一个HTTP请求。
CreateItem(en) handle CreateItem(string item_name, handle owner, handle owner) 用类名称item_name创建一个owner可以使用的物品
CreateItemOnPositionForLaunch(en) handle CreateItemOnPositionForLaunch(Vector Vector_1, handle handle_2) 在给定地点生成一个实际物品。 目标地点可以是空中(但这不会清空这个位置)
CreateItemOnPositionSync(en) handle CreateItemOnPositionSync(Vector a, handle b) 在给定位置创建一个可见的物品
CreateModifierThinker(en) handle CreateModifierThinker(handle handle_1, handle handle_2, string string_3, handle handle_4, Vector Vector_5, int int_6, bool bool_7) 生成一个不和任何NPC相关联的Modifier。 ( hCaster, hAbility, modifierName, paramTable, vOrigin, nTeamNumber, bPhantomBlocker )
CreateTempTree(en) void CreateTempTree(Vector Vector_1, float float_2) 生成一颗临时存在的树。 (vLocation, flDuration).
CreateTrigger(en) handle CreateTrigger(Vector a, Vector b, Vector c) CreateTrigger( vecMin, vecMax ) : 创建并返回一个AABB触发器
CreateTriggerRadiusApproximate(en) handle CreateTriggerRadiusApproximate(Vector a, float b) CreateTriggerRadiusApproximate( vecOrigin, flRadius ) : 创建并返回一个比给定radius大的AABB触发器
CreateUnitByName (en) handle CreateUnitByName(string a, Vector b, bool c, handle d, handle e, int f) 用DOTA单位的dota_npc_units.txt中的名字创建它( szUnitName, vLocation, bFindClearSpace, hNPCOwner, hUnitOwner, iTeamNumber )
CreateUnitByNameAsync(en) int CreateUnitByNameAsync(string a, Vector b, bool c, handle d, handle e, int f, handle g) 用DOTA单位的dota_npc_units.txt中的名字创建它( szUnitName, vLocation, bFindClearSpace, hNPCOwner, hUnitOwner, iTeamNumber, hCallback )
CreateUnitFromTable(en) hscript CreateUnitFromTable(table unitProperties) Creates a new data-driven entity with the given table
cvar_getf(en) float cvar_getf(string a) 获取给定cvar的值,返回float.
cvar_setf (en) bool cvar_setf(string a, float b) 设置给定cvar的值, 传递float.
DebugBreak(en) void DebugBreak() 在debugger(调试模式)中停止运行
DebugDrawBox(en) void DebugDrawBox(Vector origin, Vector min, Vector max, int r, int g, int b, int a, float duration) 显示一个debug overlay窗口(origin, mins, maxs, r, g, b, a, duration )
DebugDrawBoxDirection(en) void DebugDrawBoxDirection(Vector a, Vector b, Vector c, Vector d, Vector e, float f, float g) 显示一个debug forward窗口(cent, min, max, forward, vRgb, a, duration)
DebugDrawCircle(en) void DebugDrawCircle(Vector a, Vector b, float c, float d, bool e, float f) 显示一个debug圆(center, vRgb, a, rad, ztest, duration)
DebugDrawClear(en) void DebugDrawClear() 尝试清理所有debug overlay信息
DebugDrawLine(en) void DebugDrawLine(Vector a, Vector b, int c, int d, int e, bool f, float g) 显示一个debug overlay线段origin, target, r, g, b, ztest, duration)
DebugDrawLine_vCol(en) void DebugDrawLine_vCol(Vector a, Vector b, Vector c, bool d, float e) 使用vec颜色显示一个debug线段(start, end, vRgb, a, ztest, duration)
DebugDrawScreenTextLine(en) void DebugDrawScreenTextLine(float a, float b, int c, string d, int e, int f, int g, int h, float i) 显示给定行间距(lineoffset)的文字(x, y, lineOffset, text, r, g, b, a, duration)
DebugDrawSphere(en) void DebugDrawSphere(Vector a, Vector b, float c, float d, bool e, float f) 显示一个debug球(center, vRgb, a, rad, ztest, duration)
DebugDrawText(en) void DebugDrawText(Vector a, string b, bool c, float d) 显示3d文字(origin, text, bViewCheck, duration)
DebugScreenTextPretty(en) void DebugScreenTextPretty(float a, float b, int c, string d, int e, int f, int g, int h, float i, string j, int k, bool l) 显示漂亮的debug文字(x, y, lineOffset, text, r, g, b, a, duration, font, size, bBold)
DoCleaveAttack(en) int DoCleaveAttack(handle handle_1, handle handle_2, handle handle_3, float float_4, float float_5, string string_6) (hAttacker, hTarget, hAbility, fDamage, fRadius, effectName)
DoEntFire(en) void DoEntFire(string a, string b, string c, float d, handle e, handle f)EntFire: 构造一个实体的输入/输出事件( szTarget, szAction, szValue, flDelay, hActivator, hCaller )
DoEntFireByInstanceHandle(en) void DoEntFireByInstanceHandle(handle a, string b, string c, float d, handle e, handle f) EntFireByHandle:构造一个实体的输入/输出事件
DoIncludeScript(en) bool DoIncludeScript(string a, handle b) 运行一个内部脚本
DoScriptAssert(en) void DoScriptAssert(bool a, string b) ScriptAssert:断言传入数据是数值,输出信息并显示断言对话框(参考编程中的Assert功能,主要用于调试,译者注)
DoUniqueString(en) string DoUniqueString(string a) UniqueString:使用任意的根字符串构造一个保证在VM脚本运行周期内唯一的字符串。当给表增加数据但不确定已用关键字时有用
EmitAnnouncerSound(en) void EmitAnnouncerSound(string string_1) 对所有玩家播放播音员的声音。
EmitAnnouncerSoundForPlayer(en) void EmitAnnouncerSoundForPlayer(string string_1, int int_2) 对一位玩家播放播音员的音效。
EmitAnnouncerSoundForTeam(en) void EmitAnnouncerSoundForTeam(string string_1, int int_2) 对一方队伍成员播放播音员的音效。
EmitAnnouncerSoundForTeamOnLocation(en) void EmitAnnouncerSoundForTeamOnLocation(string string_1, int int_2, Vector Vector_3) 对在某个特定地点队伍成员播放播音员的音效
EmitGlobalSound(en) void EmitGlobalSound(string a) 为所有玩家播放给定名称的音效
EmitSoundOn(en) void EmitSoundOn(string a, handle b) 在一个实体上播放给定名称的音效
EmitSoundOnClient(en) void EmitSoundOnClient(string a, handle b) 为指定玩家播放给定名称的音效
EmitSoundOnLocationForAllies(en) void EmitSoundOnLocationForAllies(Vector Vector_1, string string_2, handle handle_3) 从处在某个地点的某个单位处播放音效,仅对这个单位的友军有效。(vLocation, soundName, hCaster)
EmitSoundOnLocationWithCaster(en) void EmitSoundOnLocationWithCaster(Vector Vector_1, string string_2, handle handle_3) 从处在某个地点的某个单位处播放音效。 (vLocation, soundName, hCaster).
EntIndexToHScript(en) handle EntIndexToHScript(int a) 把一个实体的整数索引转化为表达该实体脚本实例的HScript
ExecuteOrderFromTable(en) void ExecuteOrderFromTable(handle a) 从一个Script表发布命令
ExponentialDecay(en) float ExponentialDecay(float a, float b, float c)平 滑的曲线,接近0时减少较慢
FileToString(en) string FileToString(string a) 从文件读取字符串给脚本,目录遍历似乎无效,字符'.','/'和'\\'被忽略,文件从C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\dota_ugc\game\dota\ems读取,函数的用途与StringToFile相反
FindClearSpaceForUnit(en) void FindClearSpaceForUnit(handle a, Vector b, bool c) 在未被占用的地方创建单位
FindUnitsInRadius(en) table FindUnitsInRadius(int teamNumber, Vector position, handle cacheUnit, float radius, int teamFilter, int typeFilter, int flagFilter, int order, bool canGrowCache) 在给定范围内用给定flags搜索单位( iTeamNumber, vPosition, hCacheUnit, flRadius, iTeamFilter, iTypeFilter, iFlagFilter, iOrder, bCanGrowCache )
FindUnitsInLine(en) table FindUnitsInLine(int teamNumber, Vector vStartPos, Vector vEndPos, handle cacheUnit, float width, int teamFilter, int typeFilter, int flagFilter) 在给定的一条线上用给定flags搜索单位 ( iTeamNumber, vStartPos, vEndPos, hCacheUnit, flWidth, iTeamFilter, iTypeFilter, iFlagFilter)
FireEntityIOInputNameOnly(en) void FireEntityIOInputNameOnly(ehandle a, string b) 触发实体的动作输入w/no数据
FireEntityIOInputString(en) void FireEntityIOInputString(ehandle a, string b, string c) 用给定字符串(由你分配内存)触发实体的动作输入
FireEntityIOInputVec(en) void FireEntityIOInputVec(ehandle a, string b, Vector c) 用给定的Vector( hEntity, szActionName, vector )触发实体的动作输入
FireGameEvent(en) void FireGameEvent(string eventName, handle parameterTable) 触发一个预定义事件,可以在custom_events.txt或dota的资源/.res中找到
FireGameEventLocal(en) void FireGameEventLocal(string a, handle b) 触发一个游戏事件但不广播给客户端
FrameTime(en) float FrameTime() 获取上一帧在服务器上花费的时间
GetEntityIndexForTreeId(en) <unknown> GetEntityIndexForTreeId(unsigned unsigned_1) 对于指定为DOTA_UNIT_ORDER_CAST_TARGET_TREE下的entindex_target类型的树,这个方法用来获取其实体索引。
GetFrameCount(en) int GetFrameCount() 返回引擎当然的帧数
GetFrostyBoostAmount(en) float GetFrostyBoostAmount(int a, int b) No Description Set
GetFrostyPointsForRound(en) int GetFrostyPointsForRound(int a, int b, int c) No Description Set
GetGoldFrostyBoostAmount(en) float GetGoldFrostyBoostAmount(int a, int b) No Description Set
GetGoldFrostyPointsForRound(en) int GetGoldFrostyPointsForRound(int a, int b, int c) No Description Set
GetGroundHeight(en) float GetGroundHeight(Vector Vector_1, handle handle_2)
GetGroundPosition(en) Vector GetGroundPosition(Vector a, handle b) 返回移动到地面的供给位置。第二个参数是一个NPC,用于测量碰撞体积
GetItemCost(en) int GetItemCost(string string_1) 通过名称获取一个物品的价格。
GetListenServerHost(en) handle GetListenServerHost() 在广播服务器获取本地玩家
GetMapName(en) string GetMapName() 获取地图的名字
GetMaxOutputDelay(en) float GetMaxOutputDelay(ehandle a, string b) 获取输出事件的最大延迟
GetPhysAngularVelocity(en) Vector GetPhysAngularVelocity(handle a) 获取VPHYS或普通物体的角速度
GetPhysVelocity(en) Vector GetPhysVelocity(handle a) 获取VPHYS或普通物体的速度
GetSystemDate(en) string GetSystemDate() 获取真实世界的日期
GetSystemTime(en) string GetSystemTime() 获取真实世界的时间
GetTeamHeroKills(en) int GetTeamHeroKills(int int_1) ( int teamID )
GetTeamName(en) string GetTeamName(int teamNumber) Returns the team name
GetTreeIdForEntityIndex(en) int GetTreeIdForEntityIndex(int int_1) 获取已给定实体索引的树的ID
GetWorldMaxX(en) float GetWorldMaxX() 获取地图X坐标最大值
GetWorldMaxY(en) float GetWorldMaxY() 获取地图Y坐标最大值
GetWorldMinX(en) float GetWorldMinX() 获取地图X坐标最小值
GetWorldMinY(en) float GetWorldMinY() 获取地图Y坐标最小值
InitLogFile(en) void InitLogFile(string a, string b) 如果给定文件不存在,用给定内容创建它;如果存在则不做任何动作
IsClient(en) bool IsClient() Returns true if this is lua running from the client.dll.
IsDedicatedServer(en) bool IsDedicatedServer() 如果服务器开放返回true
IsMarkedForDeletion(en) bool IsMarkedForDeletion(handle a) 如果实体有效并被标记为删除返回true
IsServer(en) bool IsServer() 当Lua代码是从Server.dll中被运行的时候,返回True。
IsValidEntity(en) bool IsValidEntity(handle a) 检查给定hScript是否为有效实体
IsInToolsMode(en) bool IsInToolsMode() 当此Lua脚本在Dota2创意工坊工具模式下运行时返回true。
LimitPathingSearchDepth(en) void LimitPathingSearchDepth(float float_1) 设置寻路系统的搜索范围(应该是对于深度)
LinkLuaModifier(en) void LinkLuaModifier(string modifier_name, string file_path, int motion_controller_type) 将一个Lua定义的Modifier和与其相关的类联系起来。如果这个Modifier的定义在Vscript根目录下,那么第二个argument (file_path) 可能会被忽略。
ListenToGameEvent (en) int ListenToGameEvent(string EventName, handle functionNameToCall, handle context) 从脚本给游戏事件注册一个listner,Tip:另外,为listenstandard engine events,你也可以创建自己的事件,把它们放置在/scripts/custom_events.txt.
LoadKeyValues(en) table LoadKeyValues(string a) 用给定的关键字文件创建table
LoadKeyValuesFromString(en) table LoadKeyValuesFromString(string a) 用给定的关键字string创建table
MakeStringToken(en) int MakeStringToken(string a) 检查给定的hScript是否是有效实体(?)
MinimapEvent(en) void MinimapEvent(int int_1, handle handle_2, int int_3, int int_4, int int_5, int int_6) 设置一个小地图事件。 (nTeamID, hEntity, nXCoord, nYCoord, nEventType, nEventDuration).
Msg(en) void Msg(string a) 输出信息
PauseGame(en) void PauseGame(bool a) 暂停/开始游戏
PlayerInstanceFromIndex(en) handle PlayerInstanceFromIndex(int a) 通过索引获取玩家的脚本实例
PrecacheEntityFromTable(en) void PrecacheEntityFromTable(string a, handle b, handle c) 用关键字从table中预缓存一个实体
PrecacheEntityListFromTable(en) void PrecacheEntityListFromTable(handle a, handle b) 预缓存一个实体关键字列表
PrecacheItemByNameAsync(en) void PrecacheItemByNameAsync(string a, handle b) 用DOTA物品的dota_npc_items.txt名称异步预缓存它,结束时提供回调
PrecacheItemByNameSync(en) void PrecacheItemByNameSync(string a, handle b) 用DOTA物品的dota_npc_items.txt名称预缓存它
PrecacheModel(en) void PrecacheModel(string a, handle b)( modelName, context ) - 手动预缓存一个单一模型
PrecacheResource(en) void PrecacheResource(string precacheMode, string resource, handle context) 手动预缓存一个单一资源
PrecacheUnitByNameAsync(en) void PrecacheUnitByNameAsync(string a, handle b) 用DOTA单位的dota_npc_units.txt名称异步预缓存它,结束时提供回调
PrecacheUnitByNameSync(en) void PrecacheUnitByNameSync(string a, handle b) 用DOTA单位的dota_npc_units.txt名称预缓存它
PrintLinkedConsoleMessage(en) void PrintLinkedConsoleMessage(string a, string b) Print a console message with a linked console command
RandomFloat(en) float RandomFloat(float a, float b) 获取范围内随机float
RandomInt(en) int RandomInt(int a, int b) 获取范围内随机int
RandomVector(en) Vector RandomVector(float maxLength) 获取随机二维矢量
RegisterSpawnGroupFilterProxy(en) void RegisterSpawnGroupFilterProxy(string a) 为一个脚本基础的生成单位过滤器创建一个C代理
ReloadMOTD(en) void ReloadMOTD() 重载MotD文件
RemoveSpawnGroupFilterProxy(en) void RemoveSpawnGroupFilterProxy(string a) 为一个脚本基础的生成单位过滤器删除一个C代理
ResolveNPCPositions(en) void ResolveNPCPositions(Vector Vector_1, float float_2) Check and fix units that have been assigned a position inside collision radius of other NPCs. 检查并固定一个被分配到其他NPC的碰撞半径内的某位置的单位。
RollPercentage(en) bool RollPercentage(int a) 随机生成1-100内的数,小于等于给定数则返回true
RotateOrientation(en) QAngle RotateOrientation(QAngle a, QAngle b) 旋转一个QAngle,用另一个QAngle
RotateQuaternionByAxisAngle(en) Quaternion RotateQuaternionByAxisAngle(Quaternion a, Vector b, float c) 围绕给定vector轴线旋转一个四元数
RotationDelta(en) QAngle RotationDelta(QAngle a, QAngle b) 两个QAngle间的delta值
rr_AddDecisionRule(en) bool rr_AddDecisionRule(handle a) 给决定数据库增加一个规则
rr_CommitAIResponse(en) bool rr_CommitAIResponse(handle a, handle b) 把QueryBestResponse的结果交付给定的实体播放,用参数调用(entity, airesponse)
rr_GetResponseTargets(en) handle rr_GetResponseTargets() 获取所有提供的表达者目标的table,格式为{ name : handle, name: handle }.
rr_QueryBestResponse(en) bool rr_QueryBestResponse(handle a, handle b, handle c) 参数: ( hEnt, hQuery, hResult ) // 静态 : 对实体的回复系统测试 'query'并返回最佳回复(无回复返回nil)
Say(en) void Say(handle entity, string message, bool teamOnly) 让实体说string,是否仅限队友可见
ScreenShake(en) void ScreenShake(Vector a, float b, float c, float d, float e, int f, bool g) 用下列参数开始镜头摇晃:vecCenter, flAmplitude, flFrequency, flDuration, flRadius, eCommand( SHAKE_START = 0, SHAKE_STOP = 1 ), bAirShake
SendFrostivusTimeElapsedToGC(en) void SendFrostivusTimeElapsedToGC() No Description Set
SendFrostyPointsMessageToGC(en) void SendFrostyPointsMessageToGC(handle a) No Description Set
SendOverheadEventMessage(en) void SendOverheadEventMessage(handle handle_1, int int_2, handle handle_3, int int_4, handle handle_5) ( DOTAPlayer sendToPlayer, int iMessageType, Entity targetEntity, int iValue, DOTAPlayer sourcePlayer ) - sendToPlayer和sourcePlayer 允许为nil。 - iMessageType是OVERHEAD_ALERT_分类中的一个。
SendToConsole(en) void SendToConsole(string a) 给控制台发送string作为客户端命令
SendToServerConsole(en) void SendToServerConsole(string a) 给控制台发送string作为服务器命令
SetOpvarFloatAll(en) void SetOpvarFloatAll(string a, string b, string c, float d) 为所有玩家设置opvar值
SetOpvarFloatPlayer(en) void SetOpvarFloatPlayer(string a, string b, string c, float d, handle e) 为单一玩家设置opvar值( szStackName, szOperatorName, szOpvarName, flOpvarValue, hEnt )
SetQuestName(en) void SetQuestName(string a) 设置当前任务名
SetQuestPhase(en) void SetQuestPhase(int a) 设置当前任务阶段
SetRenderingEnabled(en) void SetRenderingEnabled(ehandle a, bool b) 为ehandle设置rendering(渲染)开/关
SetTeamCustomHealthbarColor(en) void SetTeamCustomHealthbarColor(int int_1, int int_2, int int_3, int int_4) ( teamNumber, r, g, b )
ShowCustomHeaderMessage(en) void ShowCustomHeaderMessage(string message, int player, int value, float time) Displays a header message from player
ShowGenericPopup(en) void ShowGenericPopup(string title, string content, string unknown, string unknown, int containerType) 对所有玩家显示通用的弹出窗口
ShowGenericPopupToPlayer(en) void ShowGenericPopupToPlayer(handle a, string b, string c, string d, string e, int f) 对给定玩家显示通用的弹出窗口
ShowMessage(en) oid ShowMessage(string a) 在所有客户端显示hud信息
SpawnEntityFromTableSynchronous(en) handle SpawnEntityFromTableSynchronous(string a, handle b) 从table同步生成一个实体
SpawnEntityGroupFromTable(en) bool SpawnEntityGroupFromTable(handle groupSpawnTables, bool bAsync, handle hCallback) 从一系列生成表中分级生成一个实体组
SpawnEntityListFromTableAsynchronous(en) int SpawnEntityListFromTableAsynchronous(handle a, handle b) 从一个生成表列表异步生成一个实体组,生成完成后会触发一次回调
SpawnEntityListFromTableSynchronous(en) handle SpawnEntityListFromTableSynchronous(handle a) 从一个生成表列表同步生成一个实体组.
SplineQuaternions(en) Quaternion SplineQuaternions(Quaternion a, Quaternion b, float c) (quaternion,quaternion,float)非常基础的v0到v1差值,t属于[0,1]为参数
SplineVectors(en) Vector SplineVectors(Vector a, Vector b, float c) (vector,vector,float)非常基础的v0到v1差值,t属于[0,1]为参数
StartSoundEvent(en) void StartSoundEvent(string a, handle b) 开始音效事件
StartSoundEventFromPosition(en) void StartSoundEventFromPosition(string string_1, Vector Vector_2) 在某个位置开始音效事件。
StartSoundEventFromPositionReliable(en) void StartSoundEventFromPositionReliable(string string_1, Vector Vector_2) 通过可靠的传递,在某个位置开始音效事件。
StartSoundEventFromPositionUnreliable(en) void StartSoundEventFromPositionUnreliable(string string_1, Vector Vector_2) 通过随意的传递,在某个位置开始音效事件。
StartSoundEventReliable(en) void StartSoundEventReliable(string string_1, handle handle_2) 通过可靠的传递,开始音效事件。
StartSoundEventUnreliable(en) void StartSoundEventUnreliable(string string_1, handle handle_2) 通过随意的传递,开始音效事件。
StopEffect(en) void StopEffect(handle a, string b) (hEntity, szEffectName)
StopListeningToAllGameEvents(en) void StopListeningToAllGameEvents(handle a) 停止listen在给定内容内的所有游戏事件
StopListeningToGameEvent(en) bool StopListeningToGameEvent(int a) 停止listen特定的游戏事件
StopSoundEvent(en) void StopSoundEvent(string a, handle b) 停止音效事件
StopSoundOn(en) void StopSoundOn(string soundName, handle playingEntity) 停止实体上的命名音效
StringToFile(en) bool StringToFile(string a, string b) 目录遍历似乎无效,字符'.','/'和'\\'被忽略,文件名不能为空,也不能包含忽略字符,否则函数无效并返回false,一次只能保存一个字符串,每次调用文件都被覆盖,文件以一个NUL字符结尾,文件被保存在C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\dota_ugc\game\dota\ems,函数用途与FileToString相反
Time(en) float Time() 获取当前服务器时间
TraceCollideable(en) bool TraceCollideable(handle a) 传递table - 输入: start, end, ent, (可选 mins, maxs) -- 输出: pos, fraction, hit, startsolid, normal
TraceHull(en) bool TraceHull(handle a) 传递table - 输入: start, end, min, max, mask, ignore -- 输出: pos, fraction, hit, enthit, startsolid
TraceLine(en) bool TraceLine(handle a) 传递table - 输入: startpos, endpos, mask, ignore -- 输出: pos, fraction, hit, enthit, startsolid
UnitFilter(en) int UnitFilter(handle handle_1, int int_2, int int_3, int int_4, int int_5) 当一个单位通过一系列过滤器时进行检查。 (hNPC, nTargetTeam, nTargetType, nTargetFlags, nTeam
UnloadSpawnGroup(en) void UnloadSpawnGroup(string a) 通过名称去除生成组
UnloadSpawnGroupByHandle(en) void UnloadSpawnGroupByHandle(int a) 通过handle去除生成组
UpdateEventPoints(en) void UpdateEventPoints(handle a) No Description Set
UTIL_MessageText(en) void UTIL_MessageText(int playerId, string message, int r, int g, int b, int a) 对特定的玩家显示信息。
UTIL_MessageText_WithContext(en) void UTIL_MessageText_WithContext(int playerId, string message, int r, int g, int b, int a, table context) Sends a message to a specific player in the message box with a context table
UTIL_MessageTextAll(en) void UTIL_MessageTextAll(string message, int r, int g, int b, int a) 在文本框内对所有玩家显示信息。
UTIL_MessageTextAll_WithContext(en) void UTIL_MessageTextAll_WithContext(string message, int r, int g, int b, int a, table context) Sends a message to everyone in the message box with a context table
UTIL_Remove(en) void UTIL_Remove(handle a) 删除给定实体
UTIL_RemoveImmediate(en) void UTIL_RemoveImmediate(handle a) 立即删除给定实体
UTIL_ResetMessageText(en) void UTIL_ResetMessageText(int playerId) 对某个玩家重新设置信息文本。
UTIL_ResetMessageTextAll(en) void UTIL_ResetMessageTextAll() 对所有玩家重新设置信息文本。
VectorToAngles(en) QAngle VectorToAngles(Vector a) 为Vector获取Qangle(没有滚动)
Warning(en) void Warning(string a) 输出警告

CBaseEntity

The base class for stuff

函数名 函数原型 解释
ApplyAbsVelocityImpulse(en) void ApplyAbsVelocityImpulse(Vector a) 添加一个速度冲击
ApplyLocalAngularVelocityImpulse(en) void ApplyLocalAngularVelocityImpulse(Vector a) 添加一个角速度的冲击
EmitSound(en) void EmitSound(string soundName)
EmitSoundParams(en) void EmitSoundParams(string soundName, int pitch, float volume, float soundTime) 播放/修改这个实体的声音.当音调,音量或播放时间大于零时改变声音
EyeAngles(en) QAngle EyeAngles() 获得这个实体的视角qangles
EyePosition(en) Vector EyePosition() 获得指向视角位置的矢量,位置为绝对坐标
FirstMoveChild(en) handle FirstMoveChild() No Description Set
GatherCriteria(en) void GatherCriteria(handle a) 返回一个表包含用在这个实体的判定的标准.这个表等同于传入脚本方法的调用.
GetAbsOrigin(en) Vector GetAbsOrigin() No Description Set
GetAngles(en) QAngle GetAngles() No Description Set
GetAnglesAsVector(en) Vector GetAnglesAsVector() 获得实体的颠簸,偏航,摇晃的矢量
GetAngularVelocity(en) Vector GetAngularVelocity() 获得当前角速度,返回颠簸,偏航,摇晃的矢量
GetBaseVelocity(en) Vector GetBaseVelocity() 获得基础速度
GetBoundingMaxs(en) Vector GetBoundingMaxs() 获得一个包含最大范围,以物体为中心的矢量
GetBoundingMins(en) Vector GetBoundingMins() 获得一个包含最小范围,以物体为中心的矢量
GetBounds(en) table GetBounds() 获得一个以物体为中心,包含“Mins”和“Maxs”矢量的表
GetCenter(en) Vector GetCenter() 获得指向物体中心的矢量,以绝对坐标的形式
GetChildren(en) handle GetChildren() 获得继承这个实体的实体
GetContext(en) table GetContext(string a) GetContext( name ):检查一个对象的状态然后返回对象是否可用.可能返回string,float,或nil(如果对象没有找到)
GetForwardVector(en) Vector GetForwardVector() 获得这个实体的前进矢量
GetHealth(en) int GetHealth() No Description Set
GetLocalAngularVelocity(en) QAngle GetLocalAngularVelocity() 可能为当前角速度
GetLocalVelocity(en) Vector GetLocalVelocity() 获得实体相对速度
GetMaxHealth(en) int GetMaxHealth() No Description Set
GetModelName(en) string GetModelName() 获得模型的名字
GetMoveParent(en) handle GetMoveParent() 如果在有继承对象,恢复实体所继承的对象
GetOrigin(en) Vector GetOrigin() No Description Set
GetOwner(en) handle GetOwner() 获得实体的所有者
GetOwnerEntity(en) handle GetOwnerEntity() 获得拥有者的实体,如果有的话
GetRightVector(en) Vector GetRightVector() 获得实体的右方矢量
GetRootMoveParent(en) handle GetRootMoveParent() 如果在继承关系里,在继承关系中寻找所继承的根源对象
GetSoundDuration(en) float GetSoundDuration(string soundName, string actormodelname) 返回声音的播放时间.传入声音名字和可选的应用模型名字.
GetTeam(en) int GetTeam() No Description Set
GetUpVector(en) Vector GetUpVector() 获得实体的上方矢量
GetVelocity(en) Vector GetVelocity() No Description Set
IsAlive(en) bool IsAlive() No Description Set.
IsPlayer(en) bool IsPlayer() 是否为玩家的实体
IsNull(en) bool IsNull() 检查实体是否被C++删除了。
Kill(en) void Kill() No Description Set
NextMovePeer(en) handle NextMovePeer() No Description Set
OverrideFriction(en) void OverrideFriction(float a, float b) 暂时重设阻力的持续时间和值
PrecacheScriptSound(en) void PrecacheScriptSound(string a) 预载声音文件
SetAbsOrigin(en) void SetAbsOrigin(Vector origin) 设置绝对来源
SetAngles(en) void SetAngles(float pitch, float yaw, float roll) 设置实体的颠簸,偏航,摇晃
SetAngularVelocity(en) void SetAngularVelocity(float pitch, float yaw, float roll) 设置当前角速度,使用实数颠簸,偏航,摇晃速度
SetContext(en) void SetContext(string a, string b, float c) SetContext( 名字 , 值, 持续时间 ):存储任何在实体对话内容里的配对值.值是一个字符串.持续一段时间.(0代表永久)
SetContextNum(en) void SetContextNum(string a, float b, float c) SetContext( 名字 , 值, 持续时间 ):存储任何在实体对话内容里的配对值.值是一个数字(int或者float).持续一段时间.(0代表永久)
SetContextThink(en) void SetContextThink(string a, handle b, float c) 在这个实体上设置一个计时器( a:标示字符,b:执行函数 c:延迟执行的时间 )
SetForwardVector(en) void SetForwardVector(Vector forwardVec) 设置实体的方向为前进矢量
SetFriction(en) void SetFriction(float a) 设置玩家阻力,无视物体
SetGravity(en) void SetGravity(float a) 设置玩家引力,无视物体
SetHealth(en) void SetHealth(int hp) No Description Set
SetMaxHealth(en) void SetMaxHealth(int maxHP) No Description Set
SetModel(en) void SetModel(string modelName) No Description Set
SetOrigin(en) void SetOrigin(Vector origin) No Description Set
SetOwner(en) void SetOwner(handle owningEntity) 设定实体的所有者
SetParent(en) void SetParent(handle a, string b) 设定这个实体的所继承的父实体
SetRenderColor(en) void SetRenderColor(int a, int b, int c) SetRenderColor( r, g, b ):设定实体的渲染颜色
SetSize(en) void SetSize(Vector a, Vector b) No Description Set
SetTeam(en) void SetTeam(int team) No Description Set
SetVelocity(en) void SetVelocity(Vector a) No Description Set
StopSound(en) void StopSound(string soundName) 停止播放这个实体的特定的声音
Trigger(en) void Trigger() 触发这个实体的触发器

CEntities

No Description Set


Global accessor variable: Entities

函数名 函数原型 解释
CreateByClassname(en) handle CreateByClassname(string className) 用类名来创建一个实体
FindAllByClassname(en) table FindAllByClassname(string a) 通过类名来寻找所有实体.返回被找到实体的数组或表.
FindAllByClassnameWithin(en) table FindAllByClassnameWithin(string a, Vector b, float c) 在一个半径范围内通过类名寻找实体.
FindAllByModel(en) table FindAllByModel(string modelName) 通过模型名字来找到对象.
FindAllByName(en) table FindAllByName(string name) 通过名字来寻找所有实体.返回被找到实体的数组或表.
FindAllByNameWithin(en) table FindAllByNameWithin(string name, Vector origin, float maxRadius) 在半径范围内通过名字来寻找实体.
FindAllByTarget(en) table FindAllByTarget(string targetName) 通过目标名字来寻找实体
FindAllInSphere(en) table FindAllInSphere(Vector origin, float maxRadius) 在(球形)范围内寻找实体
FindByClassname(en) handle FindByClassname(handle startFrom, string className) 通过类名寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindByClassnameNearest(en) handle FindByClassnameNearest(string className, Vector origin, float maxRadius) 在最近一个点通过类名寻找实体
FindByClassnameWithin(en) handle FindByClassnameWithin(handle startFrom, string className, Vector origin, float maxRadius) 在半径范围内通过类名寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindByModel(en) handle FindByModel(handle startFrom, string modelName) 通过模型名字寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindByModelWithin(en) handle FindByModelWithin(handle startFrom, string modelName, Vector origin, float maxRadius) 在半径范围内通过模型名字寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindByName(en) handle FindByName(handle lastEnt, string searchString) 通过名字寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindByNameNearest(en) handle FindByNameNearest(string name, Vector origin, float maxRadius) 通过名字寻找最近原点的实体
FindByNameWithin(en) handle FindByNameWithin(handle startFrom, string name, Vector origin, float maxRadius) 在半径范围内通过名字寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindByTarget(en) handle FindByTarget(handle startFrom, string targetName) 通过目标名字寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
FindInSphere(en) handle FindInSphere(handle startFrom, Vector origin, float maxRadius) 在半径范围内寻找实体.传入nil就从头进行迭代寻找,传入之前找到的实体可以以之作为起点开始寻找
First(en) handle First() 在实体数组或表中开始一个迭代程序
Next(en) handle Next(handle startFrom) 从指定列表中的实体开始迭代



CEntityInstance

extends CBaseEntity

No Description Set

函数名 函数原型 解释
ConnectOutput(en) void ConnectOutput(string a, string b) 添加一个I/O链接,这可以当特定输出触发时,在这个实体调用方法
Destroy(en) void Destroy() No Description Set
DisconnectOutput(en) void DisconnectOutput(string a, string b) 从这个实体的I/O事件移除已连接的脚本方法
DisconnectRedirectedOutput(en) void DisconnectRedirectedOutput(string a, string b, handle c) 从传入实体的I/O事件移除已连接的脚本方法
entindex(en) int entindex() No Description Set
FireOutput(en) void FireOutput(string outputName, handle activator, handle caller, table args, float delay) 触发实体的输出
GetClassname(en) string GetClassname() No Description Set
GetDebugName(en) string GetDebugName() 如果没有定义的话获得实体名字的帮助
GetEntityHandle(en) ehandle GetEntityHandle() 获得这个实体的EHANDLE
GetEntityIndex(en) int GetEntityIndex() No Description Set
GetIntAttr(en) int GetIntAttr(string a) 获得整型属性
GetName(en) string GetName() No Description Set
GetOrCreatePrivateScriptScope(en) handle GetOrCreatePrivateScriptScope() 恢复实体相关的每个实例私有的脚本数据,必要时会创建
GetOrCreatePublicScriptScope(en) handle GetOrCreatePublicScriptScope() 恢复实体相关的公用脚本数据,必要时会创建
GetPrivateScriptScope(en) handle GetPrivateScriptScope() 恢复实体相关的每个实例私有的脚本数据
GetPublicScriptScope(en) handle GetPublicScriptScope() 恢复实体相关的公用脚本数据
RedirectOutput(en) void RedirectOutput(string a, string b, handle c) 添加一个I/O链接,这可以当特定输出触发时,在这个实体调用方法
RemoveSelf(en) void RemoveSelf() 删除这个实体
SetIntAttr(en) void SetIntAttr(string a, int b) 设置整型属性



CDOTABaseAbility

extends CBaseEntity

No Description Set

函数名 函数原型 解释
CastAbility(en) void CastAbility() No Description Set
ContinueCasting(en) bool ContinueCasting() No Description Set
CreateVisibilityNode(en) void CreateVisibilityNode(Vector a, float b, float c) No Description Set
DecrementModifierRefCount(en) void DecrementModifierRefCount() No Description Set
EndChannel(en) void EndChannel(bool a) 参数: bool bInterrupted
EndCooldown(en) void EndCooldown() 刷新这个技能
GetAbilityDamage(en) int GetAbilityDamage() No Description Set
GetAbilityDamageType(en) int GetAbilityDamageType() No Description Set
GetAbilityIndex(en) int GetAbilityIndex() No Description Set
GetAbilityName(en) string GetAbilityName() No Description Set
GetAbilityKeyValues(en) table GetAbilityKeyValues() No Description Set
GetAbilityTargetFlags(en) int GetAbilityTargetFlags() No Description Set
GetAbilityTargetTeam(en) int GetAbilityTargetTeam() No Description Set
GetAbilityTargetType(en) int GetAbilityTargetType() No Description Set
GetAbilityType(en) int GetAbilityType() No Description Set
GetAnimationIgnoresModelScale(en) bool GetAnimationIgnoresModelScale() No Description Set
GetAssociatedPrimaryAbilities(en) string GetAssociatedPrimaryAbilities() No Description Set
GetAssociatedSecondaryAbilities(en) string GetAssociatedSecondaryAbilities() No Description Set
GetAutoCastState(en) bool GetAutoCastState() No Description Set
GetBackswingTime(en) float GetBackswingTime() No Description Set
GetBehavior(en) int GetBehavior() No Description Set
GetCaster(en) handle GetCaster() No Description Set
GetCastPoint(en) float GetCastPoint() Returns the cast point of this ability.
GetCastRange(en) int GetCastRange(Vector vLocation, handle hTarget) Returns the cast range of this ability.
GetChannelledManaCostPerSecond(en) int GetChannelledManaCostPerSecond(int a) Returns the channeled mana cost per second of this ability if it's a channeling ability.
GetChannelStartTime(en) float GetChannelStartTime() No Description Set
GetChannelTime(en) float GetChannelTime() No Description Set
GetCloneSource(en) handle GetCloneSource() No Description Set
GetConceptRecipientType(en) int GetConceptRecipientType() No Description Set
GetCooldown(en) float GetCooldown(int a) 获得技能在给出的等级设定上的冷却时间,而不是目前的剩余的冷却时间
GetCooldownTime(en) float GetCooldownTime() No Description Set
GetCooldownTimeRemaining(en) float GetCooldownTimeRemaining() No Description Set
GetCursorPosition(en) Vector GetCursorPosition() Returns the target point vector from the last cast of this point-targeting ability .
GetCursorTarget(en) handle GetCursorTarget() Returns the target unit from the last cast of this unit-targeting ability.
GetCursorTargetingNothing(en) bool GetCursorTargetingNothing() No Description Set
GetDuration(en) float GetDuration() No Description Set
GetGoldCost(en) int GetGoldCost(int a) No Description Set
GetGoldCostForUpgrade(en) int GetGoldCostForUpgrade(int a) No Description Set
GetHeroLevelRequiredToUpgrade(en) int GetHeroLevelRequiredToUpgrade() No Description Set
GetIntrinsicModifierName(en) string GetIntrinsicModifierName() No Description Set
GetLevel(en) int GetLevel() 获得技能目前的等级
GetLevelSpecialValueFor(en) table GetLevelSpecialValueFor(string a, int b) No Description Set
GetManaCost(en) int GetManaCost(int a) No Description Set
GetMaxLevel(en) int GetMaxLevel() No Description Set
GetModifierValue(en) float GetModifierValue() No Description Set
GetModifierValueBonus(en) float GetModifierValueBonus() No Description Set
GetPlaybackRateOverride(en) float GetPlaybackRateOverride() No Description Set
GetSharedCooldownName(en) string GetSharedCooldownName() No Description Set
GetSpecialValueFor(en) table GetSpecialValueFor(string a) No Description Set
GetStolenActivityModifier(en) string GetStolenActivityModifier() No Description Set
GetToggleState(en) bool GetToggleState() No Description Set
HeroXPChange(en) bool HeroXPChange(float a) No Description Set
IncrementModifierRefCount(en) void IncrementModifierRefCount() No Description Set
IsActivated(en) bool IsActivated() No Description Set
IsAttributeBonus(en) bool IsAttributeBonus() No Description Set
IsChanneling(en) bool IsChanneling() 返回目前技能是否在施法状态
IsCooldownReady(en) bool IsCooldownReady() No Description Set
IsCosmetic(en) bool IsCosmetic(handle hEntity) No Description Set
IsFullyCastable(en) bool IsFullyCastable() 返回技能能否被释放
IsHidden(en) bool IsHidden() No Description Set
IsHiddenWhenStolen(en) bool IsHiddenWhenStolen() No Description Set
IsInAbilityPhase(en) bool IsInAbilityPhase() 返回技能目前是否在被释放
IsItem(en) bool IsItem() Returns whether this is an ability attached to an item.
IsOwnersGoldEnough(en) bool IsOwnersGoldEnough(int a) No Description Set
IsOwnersGoldEnoughForUpgrade(en) bool IsOwnersGoldEnoughForUpgrade() No Description Set
IsOwnersManaEnough(en) bool IsOwnersManaEnough() No Description Set
IsPassive(en) bool IsPassive() Returns whether this is a passive ability.
IsSharedWithTeammates(en) bool IsSharedWithTeammates() No Description Set
IsStealable(en) bool IsStealable() Returns whether this ability can be stealed (by Rubick's ultimate).
IsStolen(en) bool IsStolen() Returns whether this ability has been stolen.
IsToggle(en) bool IsToggle() No Description Set
IsTrained(en) bool IsTrained() No Description Set
MarkAbilityButtonDirty(en) void MarkAbilityButtonDirty() 标记这个技能图标表示需要刷新
NumModifiersUsingAbility(en) int NumModifiersUsingAbility() No Description Set
OnAbilityPhaseInterrupted(en) void OnAbilityPhaseInterrupted() No Description Set
OnAbilityPhaseStart(en) bool OnAbilityPhaseStart() No Description Set
OnAbilityPinged(en) void OnAbilityPinged() No Description Set
OnChannelFinish(en) void OnChannelFinish(bool a) No Description Set
OnChannelThink(en) void OnChannelThink(float a) No Description Set
OnHeroCalculateStatBonus(en) void OnHeroCalculateStatBonus() No Description Set
OnHeroLevelUp(en) void OnHeroLevelUp() No Description Set
OnInventoryContentsChanged(en) void OnInventoryContentsChanged() No Description Set
OnOwnerDied(en) void OnOwnerDied() No Description Set
OnOwnerSpawned(en) void OnOwnerSpawned() No Description Set
OnSpellStart(en) void OnSpellStart() No Description Set
OnToggle(en) void OnToggle() No Description Set
OnUpgrade(en) void OnUpgrade() No Description Set
PayGoldCost(en) void PayGoldCost() No Description Set
PayGoldCostForUpgrade(en) void PayGoldCostForUpgrade() No Description Set
PayManaCost(en) void PayManaCost() No Description Set
PlaysDefaultAnimWhenStolen(en) bool PlaysDefaultAnimWhenStolen() No Description Set
ProcsMagicStick(en) bool ProcsMagicStick() Returns whether this ability procs magic stick.
RefCountsModifiers(en) bool RefCountsModifiers() No Description Set
RefundManaCost(en) void RefundManaCost() No Description Set
ResetToggleOnRespawn(en) bool ResetToggleOnRespawn() No Description Set
SetAbilityIndex(en) void SetAbilityIndex(int a) No Description Set
SetActivated(en) void SetActivated(bool a) No Description Set
SetChanneling(en) void SetChanneling(bool a) No Description Set
SetHidden(en) void SetHidden(bool a) No Description Set
SetInAbilityPhase(en) void SetInAbilityPhase(bool a) No Description Set
SetLevel(en) void SetLevel(int a) 设置这个技能的等级
SetOverrideCastPoint(en) void SetOverrideCastPoint(float a) No Description Set
SetRefCountsModifiers(en) void SetRefCountsModifiers(bool a) No Description Set
SetStolen(en) void SetStolen(bool a) No Description Set
ShouldUseResources(en) bool ShouldUseResources() No Description Set
SpeakAbilityConcept(en) void SpeakAbilityConcept(int a) No Description Set
SpeakTrigger(en) bool SpeakTrigger() No Description Set
StartCooldown(en) void StartCooldown(float a) 参数:fl冷却时间?
ToggleAbility(en) void ToggleAbility() No Description Set
ToggleAutoCast(en) void ToggleAutoCast() No Description Set
UpgradeAbility(en) void UpgradeAbility() No Description Set
UseResources(en) void UseResources(bool a, bool b, bool c) No Description Set


CDOTA_Ability_Animation_Attack

extends CDOTABaseAbility

No Description Set

函数名 函数原型 解释
SetPlaybackRate(en) void SetPlaybackRate(float a) 重写播放速率



CDOTA_Ability_Animation_TailSpin

extends CDOTABaseAbility

No Description Set

函数名 函数原型 解释
SetPlaybackRate(en) void SetPlaybackRate(float a) Override playbackrate



CDOTA_Ability_Nian_Leap

extends CDOTABaseAbility

No Description Set

函数名 函数原型 解释
SetPlaybackRate(en) void SetPlaybackRate(float a) Override playbackrate



CDOTA_Ability_Nian_Dive

extends CDOTABaseAbility

No Description Set

函数名 函数原型 解释
SetPlaybackRate(en) void SetPlaybackRate(float a) Override playbackrate



CDOTA_Ability_Nian_Roar

extends CDOTABaseAbility

No Description Set

函数名 函数原型 解释
GetCastCount(en) int GetCastCount() 年兽使用了咆哮的次数



CDOTA_Item

extends CDOTABaseAbility

No Description Set

函数名 函数原型 解释
GetContainer(en) handle GetContainer() 获得物品所有者
GetCost(en) int GetCost() No Description Set
GetCurrentCharges(en) int GetCurrentCharges() 获得物品的目前充能
GetInitialCharges(en) int GetInitialCharges() 获得物品的初始充能
GetPurchaser(en) handle GetPurchaser() 获得物品的购买者
GetPurchaseTime(en) float GetPurchaseTime() 获得物品的购买时间
GetShareability(en) int GetShareability() No Description Set
IsAlertableItem(en) bool IsAlertableItem()
IsPermanent(en) bool IsPermanent() 判断物品是否非消耗品
IsCastOnPickup(en) bool IsCastOnPickup() 判断物品是否可以被捡起。
IsCombinable(en) bool IsCombinable() 判断物品是否可以合成。
IsDisassemblable(en) bool IsDisassemblable() 判断物品是否可以被拆分。
IsDroppable(en) bool IsDroppable() 判断物品是否可以被丢弃。
IsItem(en) bool IsItem() 判断是否是物品。
IsKillable(en) bool IsKillable() 判断是否可以被击杀。
IsMuted(en) bool IsMuted() 判断是否可以被禁用(?)
IsPermanent(en) bool IsPermanent() 判断物品是否是永久性的
IsPurchasable(en) bool IsPurchasable() 判断物品是否可以被购买。
IsRecipe(en) bool IsRecipe() 判断物品是否是卷轴。
IsRecipeGenerated(en) bool IsRecipeGenerated() 判断物品是否是由卷轴合成的。
IsSellable(en) bool IsSellable() 判断物品是否可以被出售。
IsStackable(en) bool IsStackable() 判断物品是否可以叠加。
LaunchLoot(en) void LaunchLoot(bool useOnContact, float height, float flDuration, Vector destination) 当物品掉落在地面时,将物品发射出去,使其落在某个地点。
LaunchLootInitialHeight(en) void LaunchLootInitialHeight(bool bAutoUse, float flInitialHeight, float flLaunchHeight, float flDuration, Vector vEndPoint) 设置发射物品时的初始高度。
RequiresCharges(en) bool RequiresCharges() 判断物品是否需要充能。
SetCurrentCharges(en) void SetCurrentCharges(int a) 设置物品的充能数
SetPurchaser(en) void SetPurchaser(handle a) 设置物品的购买者
SetPurchaseTime(en) void SetPurchaseTime(float a) 设置物品的购买时间
SetStacksWithOtherOwners(en) void SetStacksWithOtherOwners(bool a) No Description Set
StacksWithOtherOwners(en) bool StacksWithOtherOwners() No Description Set
Think(en) void Think() 判断此物品

CDOTA_Item_Physical

extends CBaseAnimating

No Description Set

函数名 函数原型 解释
GetContainedItem(en) handle GetContainedItem() 返回禁用的物品?
GetCreationTime(en) float GetCreationTime() 返回物品第一次出现在地图上的时间
SetContainedItem(en) void SetContainedItem(handle a) 设置禁用的物品?



CDOTA_Item_DataDriven

extends CDOTA_Item

'

函数名 函数原型 解释
ApplyDataDrivenModifier(en) void ApplyDataDrivenModifier(handle source, handle target, string modifier_name, handle modifierArgs) 应用一个数据驱动的Mordifier。
ApplyDataDrivenThinker(en) handle ApplyDataDrivenThinker(handle hCaster, Vector vLocation, string pszModifierName, handle hModifierTable) 应用一个数据驱动的计时器到指定地点。

CDOTA_Unit_Nian

extends CDOTA_BaseNPC_Creature

No Description Set

函数名 函数原型 解释
GetHorn(en) handle GetHorn() 获取年兽角
GetTail(en) handle GetTail() 获取年兽尾巴
IsHornAlive(en) bool IsHornAlive() 年兽的角巴是否损坏?
IsTailAlive(en) bool IsTailAlive() 年兽的尾巴是否损坏?



CBasePlayer

No Description Set

函数名 函数原型 解释
GetHMDAvatar(en) handle GetHMDAvatar() Returns the HMD Avatar entity for this player if it exists.
IsNoclipping(en) bool IsNoclipping() 玩家处于穿墙模式(noclip mode)下返回true
IsSteamControllerButtonPressed(en) bool IsSteamControllerButtonPressed(int nControllerNumber, int nButton) 当Steam控制按钮被按下时,返回True。
IsUsePressed(en) bool IsUsePressed() 当使用按钮被按下时,返回True。
IsVRControllerButtonPressed(en) bool IsVRControllerButtonPressed(int nButton) 当VR控制按钮被按下时,返回True。
Quit(en) void Quit() 从脚本中退出游戏。

CDOTAPlayer

extends CBaseAnimating

No Description Set

函数名 函数原型 解释
GetAssignedHero(en) handle GetAssignedHero() 获取该玩家的英雄
GetControlledRPGUnit(en) handle GetControlledRPGUnit() 获取该玩家控制的RPG单位
GetPlayerID(en) int GetPlayerID() 获取该玩家的官方玩家ID(PlayerID)玩家不在队伍中时返回-1
MakeRandomHeroSelection(en) void MakeRandomHeroSelection() 随机该玩家的英雄
SetKillCamUnit(en) void SetKillCamUnit(handle a) 设置英雄的击杀镜头单位(kill cam unit)
SetMusicStatus(en) void SetMusicStatus(int nMusicStatus, float flIntensity) 设置玩家的音乐状态,注意这只有在dota_music_battle_enable为off时才会有效



CDOTA_PlayerResource

extends CBaseEntity

No Description Set


Global accessor variable: PlayerResource

函数名 函数原型 解释
AddAegisPickup(en) void AddAegisPickup(int a) No Description Set
AddClaimedFarm(en) void AddClaimedFarm(int a, float b) No Description Set
AddGoldSpentOnSupport(en) void AddGoldSpentOnSupport(int a, int b) No Description Set
AddRunePickup(en) void AddRunePickup(int a) No Description Set
AreUnitsSharedWithPlayerID(en) bool AreUnitsSharedWithPlayerID(int a, int b) No Description Set
ClearKillsMatrix(en) void ClearKillsMatrix(int a) No Description Set
ClearLastHitMultikill(en) void ClearLastHitMultikill(int a) No Description Set
ClearLastHitStreak(en) void ClearLastHitStreak(int a) No Description Set
ClearRawPlayerDamageMatrix(en) void ClearRawPlayerDamageMatrix(int a) No Description Set
ClearStreak(en) void ClearStreak(int a) No Description Set
GetAegisPickups(en) int GetAegisPickups(int a) No Description Set
GetAssists(en) int GetAssists(int a) No Description Set
GetBroadcasterChannel(en) unsigned GetBroadcasterChannel(int a) No Description Set
GetBroadcasterChannelSlot(en) unsigned GetBroadcasterChannelSlot(int a) No Description Set
GetClaimedDenies(en) int GetClaimedDenies(int a) No Description Set
GetClaimedFarm(en) float GetClaimedFarm(int a) No Description Set
GetClaimedMisses(en) int GetClaimedMisses(int a) No Description Set
GetConnectionState(en) int GetConnectionState(int iPlayerID) 返回一个指示玩家连接状态的数字。 0 - 无连接. 1 - 机器人连入. 2 - 玩家连入. 3 机器人/玩家断线.
GetCreepDamageTaken(en) int GetCreepDamageTaken(int a) No Description Set
GetCustomBuybackCooldown(en) float GetCustomBuybackCooldown(int a) No Description Set
GetCustomBuybackCost(en) int GetCustomBuybackCost(int a) No Description Set
GetCustomTeamAssignment(en) int GetCustomTeamAssignment(int playerIndex) 返回玩家要加入的队伍编号
GetDamageDoneToHero(en) int GetDamageDoneToHero(int a, int b) No Description Set
GetDeaths(en) int GetDeaths(int a) No Description Set
GetDenies(en) int GetDenies(int a) No Description Set
GetEventPointsForPlayerID(en) int GetEventPointsForPlayerID(int a) No Description Set
GetEventPremiumPointsGranted(en) int GetEventPremiumPointsGranted(int a) No Description Set
GetEventRankGranted(en) int GetEventRankGranted(int a) No Description Set
GetGold(en) int GetGold(int playerID) 返回指定玩家现有金钱量
GetGoldBagsCollected(en) int GetGoldBagsCollected(int a) No Description Set
GetGoldLostToDeath(en) int GetGoldLostToDeath(int a) No Description Set
GetGoldPerMin(en) float GetGoldPerMin(int a) No Description Set
GetGoldSpentOnBuybacks(en) int GetGoldSpentOnBuybacks(int a) No Description Set
GetGoldSpentOnConsumables(en) int GetGoldSpentOnConsumables(int a) No Description Set
GetGoldSpentOnItems(en) int GetGoldSpentOnItems(int a) No Description Set
GetGoldSpentOnSupport(en) int GetGoldSpentOnSupport(int a) No Description Set
GetHealing(en) float GetHealing(int a) No Description Set
GetHeroDamageTaken(en) int GetHeroDamageTaken(int a) No Description Set
GetKills(en) int GetKills(int playerID) 返回指定玩家击杀次数
GetKillsDoneToHero(en) int GetKillsDoneToHero(int attackerPlayerID, int victimPlayerID) 返回攻击者(第一个参数)杀死指定受害者(第二个参数)的次数
GetLastHitMultikill(en) int GetLastHitMultikill(int a) No Description Set
GetLastHits(en) int GetLastHits(int playerID) No Description Set
GetLastHitStreak(en) int GetLastHitStreak(int a) No Description Set
GetLevel(en) int GetLevel(int playerID) No Description Set
GetMisses(en) int GetMisses(int a) No Description Set
GetNearbyCreepDeaths(en) int GetNearbyCreepDeaths(int a) No Description Set
GetNthCourierForTeam(en) handle GetNthCourierForTeam(int a, int b) No Description Set
GetNthPlayerIDOnTeam(en) int GetNthPlayerIDOnTeam(int a, int b) No Description Set
GetNumConsumablesPurchased(en) int GetNumConsumablesPurchased(int a) No Description Set
GetNumCouriersForTeam(en) int GetNumCouriersForTeam(int a) No Description Set
GetNumItemsPurchased(en) int GetNumItemsPurchased(int a) No Description Set
GetOriginalLobbyTeam(en) int GetOriginalLobbyTeam(int iPlayerID) 获取玩家在房间中所属的初始队伍。 当没有房间信息时,返回DOTA_TEAM_NOTEAM。
GetPlayer(en) handle GetPlayer(int playerID) No Description Set
GetPlayerCount(en) int GetPlayerCount() 获取未加入队伍的观战者和玩家数量。
GetPlayerCountForTeam(en) int GetPlayerCountForTeam(int iTeam) 获取队伍中的玩家数量。
GetPlayerLoadedCompletely(en) bool GetPlayerLoadedCompletely(int a) No Description Set
GetPlayerName(en) string GetPlayerName(int a) No Description Set
GetPlayerReservedState(en) bool GetPlayerReservedState(int a) No Description Set
GetRawPlayerDamage(en) int GetRawPlayerDamage(int a) No Description Set
GetReliableGold(en) int GetReliableGold(int playerID) 返回指定玩家现有可靠金钱量
GetRespawnSeconds(en) int GetRespawnSeconds(int a) No Description Set
GetRoshanKills(en) int GetRoshanKills(int a) No Description Set
GetRunePickups(en) int GetRunePickups(int a) No Description Set
GetSelectedHeroEntity(en) handle GetSelectedHeroEntity(int a) No Description Set
GetSelectedHeroID(en) int GetSelectedHeroID(int a) No Description Set
GetSelectedHeroName(en) string GetSelectedHeroName(int a) No Description Set
GetSteamAccountID(en) <> GetSteamAccountID(int a) 获取32位SteamID
GetSteamID(en) unsigned GetSteamID(int iPlayerID) 获取64位SteamID
GetStreak(en) int GetStreak(int a) No Description Set
GetStuns(en) float GetStuns(int a) No Description Set
GetTeam(en) int GetTeam(int a) No Description Set
GetTeamKills(en) int GetTeamKills(int a) No Description Set
GetTeamPlayerCount(en) int GetTeamPlayerCount() 获取处于有效队伍(天辉,夜魇,或者自定义队伍)的玩家数量。
GetTimeOfLastConsumablePurchase(en) float GetTimeOfLastConsumablePurchase(int a) No Description Set
GetTimeOfLastDeath(en) float GetTimeOfLastDeath(int a) No Description Set
GetTimeOfLastItemPurchase(en) float GetTimeOfLastItemPurchase(int a) No Description Set
GetTotalEarnedGold(en) int GetTotalEarnedGold(int a) No Description Set
GetTotalEarnedXP(en) int GetTotalEarnedXP(int a) No Description Set
GetTotalGoldSpent(en) int GetTotalGoldSpent(int a) No Description Set
GetTowerDamageTaken(en) int GetTowerDamageTaken(int a) No Description Set
GetTowerKills(en) int GetTowerKills(int a) No Description Set
GetUnitShareMaskForPlayer(en) int GetUnitShareMaskForPlayer(int a, int b) No Description Set
GetUnreliableGold(en) int GetUnreliableGold(int playerID) 返回指定玩家现有不可靠金钱量
GetXPPerMin(en) float GetXPPerMin(int a) No Description Set
HasCustomGameTicketForPlayerID(en) bool HasCustomGameTicketForPlayerID(int iPlayerID) 当玩家拥有通行证时返回true
HasRandomed(en) bool HasRandomed(int a) No Description Set
HasRepicked(en) bool HasRepicked(int playerID) No Description Set
HasSelectedHero(en) bool HasSelectedHero(int a) No Description Set
HaveAllPlayersJoined(en) bool HaveAllPlayersJoined() No Description Set
HeroLevelUp(en) void HeroLevelUp(int a) No Description Set
IncrementAssists(en) void IncrementAssists(int playerID) No Description Set
IncrementClaimedDenies(en) void IncrementClaimedDenies(int a) No Description Set
IncrementClaimedMisses(en) void IncrementClaimedMisses(int a) No Description Set
IncrementDeaths(en) void IncrementDeaths(int playerID) No Description Set
IncrementDenies(en) void IncrementDenies(int a) No Description Set
IncrementGoldBagsCollected(en) void IncrementGoldBagsCollected(int a) No Description Set
IncrementKills(en) void IncrementKills(int playerID, int kills) No Description Set
IncrementLastHitMultikill(en) void IncrementLastHitMultikill(int a) No Description Set
IncrementLastHits(en) void IncrementLastHits(int a) No Description Set
IncrementLastHitStreak(en) void IncrementLastHitStreak(int a) No Description Set
IncrementMisses(en) void IncrementMisses(int a) No Description Set
IncrementNearbyCreepDeaths(en) void IncrementNearbyCreepDeaths(int a) No Description Set
IncrementStreak(en) void IncrementStreak(int a) No Description Set
IncrementTotalEarnedXP(en) void IncrementTotalEarnedXP(int a, int b) No Description Set
IsBroadcaster(en) bool IsBroadcaster(int a) No Description Set
IsDisableHelpSetForPlayerID(en) bool IsDisableHelpSetForPlayerID(int a, int b) No Description Set
IsFakeClient(en) bool IsFakeClient(int a) No Description Set
IsHeroSelected(en) bool IsHeroSelected(string a) No Description Set
IsHeroSharedWithPlayerID(en) bool IsHeroSharedWithPlayerID(int a, int b) No Description Set
IsValidPlayer(en) bool IsValidPlayer(int playerID) No Description Set
IsValidPlayerID(en) bool IsValidPlayerID(int playerID) No Description Set
IsValidTeamPlayer(en) bool IsValidTeamPlayer(int playerID) No Description Set
IsValidTeamPlayerID(en) bool IsValidTeamPlayerID(int playerID) No Description Set
ModifyGold(en) int ModifyGold(int playerID, int goldAmmt, bool reliable, int d) No Description Set
ReplaceHeroWith(en) handle ReplaceHeroWith(int a, string b, int c, int d) (玩家ID,英雄职业名,金钱,经验值) - 将玩家的英雄替换成指定的英雄、金钱和经验值
ResetBuybackCostTime(en) void ResetBuybackCostTime(int a) No Description Set
ResetTotalEarnedGold(en) void ResetTotalEarnedGold(int a) No Description Set
SetBuybackCooldownTime(en) void SetBuybackCooldownTime(int a, float b) No Description Set
SetBuybackGoldLimitTime(en) void SetBuybackGoldLimitTime(int a, float b) No Description Set
SetCameraTarget(en) void SetCameraTarget(int a, handle b) (玩家ID,实体) - 强制玩家镜头跟随目标实体
SetCustomBuybackCooldown(en) void SetCustomBuybackCooldown(int a, float b) 设置玩家买活冷却时间
SetCustomBuybackCost(en) void SetCustomBuybackCost(int a, int b) 设置玩家买活花费
SetCustomPlayerColor(en) void SetCustomPlayerColor(int iPlayerID, int r, int g, int b) 为玩家设定自定义颜色(将显示在小地图,计分板等)。
SetCustomTeamAssignment(en) void SetCustomTeamAssignment(int playerIndex, int teamToJoin) 设置玩家要加入的队伍
SetGold(en) void SetGold(int playerID, int amount, bool reliableGold) 设置玩家的可靠/不可靠金钱数
SetHasRandomed(en) void SetHasRandomed(int playerID) No Description Set
SetHasRepicked(en) void SetHasRepicked(int playerID) No Description Set
SetLastBuybackTime(en) void SetLastBuybackTime(int a, int b) No Description Set
SetOverrideSelectionEntity(en) void SetOverrideSelectionEntity(int nPlayerID, handle hEntity) 强制玩家选择实体。
SetPlayerReservedState(en) void SetPlayerReservedState(int a, bool b) No Description Set
SetUnitShareMaskForPlayer(en) void SetUnitShareMaskForPlayer(int a, int b, int c, bool d) No Description Set
SpendGold(en) void SpendGold(int playerID, int amount, int reason) No Description Set
UpdateTeamSlot(en) void UpdateTeamSlot(int a, int b) No Description Set
WhoSelectedHero(en) int WhoSelectedHero(string a) No Description Set

CDOTA_BaseNPC

extends CBaseFlex

'

函数名 函数原型 解释
AddAbility(en) handle AddAbility(string a) 以技能名称为该单位新增技能,并且返回该技能句柄。
AddItem(en) handle AddItem(handle a)v 增加物品到该单位的库存 。
AddItemByName(en) handle AddItemByName(string pszItemName) 向玩家的库存添加一个物品。
AddNewModifier(en) handle AddNewModifier(handle caster, handle optionalSourceAbility, string modifierName, handle modifierData) 为该单位增加修改器。
AddNoDraw(en) void AddNoDraw() 为单位添加No Draw的flag。
AddSpeechBubble (en) void AddSpeechBubble(int iBubble, string pszSpeech, float flDuration, unsigned unOffsetX, unsigned unOffsetY) 为单位添加一个会话气泡(可同时存在1-4个)。
AlertNearbyUnits(en) void AlertNearbyUnits(handle hAttacker, handle hAbility) No Description Set
AngerNearbyUnits(en) void AngerNearbyUnits() No Description Set
AttackNoEarlierThan(en) void AttackNoEarlierThan(float a) No Description Set
AttackReady(en) bool AttackReady() No Description Set
BoundingRadius2D(en) float BoundingRadius2D() No Description Set
CanEntityBeSeenByMyTeam(en) bool CanEntityBeSeenByMyTeam(handle a) Check FoW to see if an entity is visible.
CanSellItems(en) bool CanSellItems() Query if this unit can sell items.
CastAbilityImmediately(en) void CastAbilityImmediately(handle ability, int playerIndex) 技能立即施法。
CastAbilityNoTarget(en) void CastAbilityNoTarget(handle ability, int playerIndex) 无目标的施放技能 ( hAbility, iPlayerIndex ) 。
CastAbilityOnPosition(en) void CastAbilityOnPosition(Vector a, handle b, int c) 对一地点施放技能。
CastAbilityOnTarget(en) void CastAbilityOnTarget(handle target, handle ability, int playerIndex) 对一实体施放技能。
CastAbilityToggle(en) void CastAbilityToggle(handle a, int b) 切换技能 ( hAbility, iPlayerIndex ) 。
DestroyAllSpeechBubbles(en) void DestroyAllSpeechBubbles()
DisassembleItem(en) void DisassembleItem(handle a) 拆解该单位库存中过时的物品
DropItemAtPosition(en) void DropItemAtPosition(Vector a, handle b) 将物品扔在指定地点。
DropItemAtPositionImmediate(en) void DropItemAtPositionImmediate(handle a, Vector b) 立即将物品扔在指定地点。
EjectItemFromStash(en) void EjectItemFromStash(handle a) 自库存栏丢落指定的物品。
FindAbilityByName(en) handle FindAbilityByName(string a) 以名称寻找技能。
FindAllModifiers(en) table FindAllModifiers() 以table形式返回该单位所具有的所有Modifier。
FindAllModifiersByName(en) table FindAllModifiersByName(string pszScriptName) 根据Modifier的名字,以table形式返回该单位所具有的modifier。
FindModifierByName(en) handle FindModifierByName(string pszScriptName) 根据给定的名称,返回modifier的句柄。如果没有找到该名称,将返回nil。
FindModifierByNameAndCaster(en) handle FindModifierByNameAndCaster(string pszScriptName, handle hCaster) 根据给定的名称,返回某施法者所具有modifier的句柄。如果没有找到该名称,将返回nil。
ForceKill(en) void ForceKill(bool a) 强制击杀该单位。
GetAbilityByIndex(en) handle GetAbilityByIndex(int a) 以下标值检索该单位的技能。0是第一个技能
GetAbilityCount(en) int GetAbilityCount() 获取拥有的技能数量。
GetAcquisitionRange(en) float GetAcquisitionRange() 获取单位的自动收集距离。
GetAdditionalBattleMusicWeight(en) float GetAdditionalBattleMusicWeight() 获取当与该单位战斗时将会计算的战斗音乐权重。
GetAggroTarget(en) handle GetAggroTarget()Returns this unit's aggro target. 获取该单位的仇恨目标。
GetAttackAnimationPoint(en) float GetAttackAnimationPoint() No Description Set
GetAttackCapability(en) int GetAttackCapability() 获取单位的攻击力。
GetAttackDamage(en) int GetAttackDamage() 获取该单位伤害最大值与最小值之间的随机整数。
GetAttackRange(en) float GetAttackRange() 获取单位当前的攻击距离。
GetAttackRangeBuffer(en) float GetAttackRangeBuffer() 获取状态增加的攻击距离。
GetAttackSpeed(en) float GetAttackSpeed() 获取该单位的攻速。
GetAttacksPerSecond(en) float GetAttacksPerSecond() 获取APS值(每秒能够打几下)。
GetAttackTarget(en) handle GetAttackTarget() 返回该单位的攻击目标。
GetAverageTrueAttackDamage(en) int GetAverageTrueAttackDamage() 获取该单位最大伤害值与最小伤害值的平均数。
GetBaseAttackRange(en) int GetBaseAttackRange() 获取单位的基础攻击距离(修改器不列入计算)。
GetBaseAttackTime(en) float GetBaseAttackTime() No Description Set
GetBaseDamageMax(en) int GetBaseDamageMax() 获取最大伤害值。
GetBaseDamageMin(en) int GetBaseDamageMin() 获取最小伤害值。
GetBaseDayTimeVisionRange(en) int GetBaseDayTimeVisionRange() 获取单位的基础日间视野距离(修改器不列入计算)。
GetBaseHealthRegen(en) float GetBaseHealthRegen() 获取单位的基础血量恢复值。
GetBaseMagicalResistanceValue(en) float GetBaseMagicalResistanceValue() 获取单位的基础魔法抗性值。
GetBaseMaxHealth(en) float GetBaseMaxHealth() 获取基础血量值。
GetBaseMoveSpeed(en) float GetBaseMoveSpeed() 获取基础跑速。
GetBaseNightTimeVisionRange(en) int GetBaseNightTimeVisionRange() 获取单位基础的夜间视野距离(修改器不列入计算)。
GetCastPoint(en) float GetCastPoint(bool a) Parameter: bAttack
GetCloneSource(en) handle GetCloneSource() 获取米波的主身(如果这个单位是米波)。
GetCollisionPadding(en) float GetCollisionPadding() 返回该单位的碰撞体积。
GetConstantBasedManaRegen(en) float GetConstantBasedManaRegen() 获取基础的魔力恢复值常数。
GetCreationTime(en) float GetCreationTime() No Description Set
GetCurrentActiveAbility(en) handle GetCurrentActiveAbility() 获取该单位正在使用中的法术。
GetCurrentVisionRange(en) int GetCurrentVisionRange() 获取当前的视野距离。
GetCursorCastTarget(en) handle GetCursorCastTarget() 获取鼠标指定的施法目标。
GetCursorPosition(en) Vector GetCursorPosition() 获取鼠标位置。
GetCursorTargetingNothing(en) bool GetCursorTargetingNothing() No Description Set
GetDayTimeVisionRange(en) int GetDayTimeVisionRange() 获取该单位的日间视野(将修改器并入计算)。
GetDeathXP(en) int GetDeathXP() 获取该单位的击杀经验值奖赏。
GetForceAttackTarget(en) handle GetForceAttackTarget() No Description Set
GetGoldBounty(en) int GetGoldBounty() 获取该单位的击杀金钱奖赏。
GetHasteFactor(en) float GetHasteFactor() No Description Set
GetHealth(en) int GetHealth() 获取该单位的血量。
GetHealthDeficit(en) int GetHealthDeficit() 返回损失的血量 (最大血量 - 当前血量)。
GetHealthPercent(en) int GetHealthPercent() 获取该单位当前的血量百分比。
GetHealthRegen(en) float GetHealthRegen() 获取该单位当前的血量恢复值。
GetHullRadius(en) float GetHullRadius() 获取该单位的碰撞体积半径。
GetIdealSpeed(en) float GetIdealSpeed() 获取该单位的跑速(将修改器并入计算)。
GetIncreasedAttackSpeed(en) float GetIncreasedAttackSpeed() No Description Set
GetInitialGoalEntity(en) handle GetInitialGoalEntity() 返回该单位初始的路径点。
GetItemInSlot(en) handle GetItemInSlot(int a) 以下标值获取物品栏中的物品。
GetLastIdleChangeTime(en) float GetLastIdleChangeTime() 获取该单位最后 进入/离开 闲置状态的时间。
GetLevel(en) int GetLevel() 返回该单位当前的等级。
GetMagicalArmorValue(en) float GetMagicalArmorValue() 返回该单位当前的魔法抗性值。
GetMainControllingPlayer(en) int GetMainControllingPlayer() 返回控制该单位的玩家ID。
GetMana(en) float GetMana() 获取该单位的魔力值。
GetManaPercent(en) int GetManaPercent() 获取该单位的剩余魔力值百分比。
GetManaRegen(en) float GetManaRegen() 获取该单位的魔力恢复值。
GetMaxHealth(en) int GetMaxHealth() 获取该单位的最大血量。
GetMaxMana(en) float GetMaxMana() 获取该单位的最大魔力。
GetMaximumGoldBounty(en) int GetMaximumGoldBounty() 获取击杀该单位所得的最大金钱。
GetMaxMana(en) float GetMaxMana() 获取单位的最大法力值。
GetMinimumGoldBounty(en) int GetMinimumGoldBounty() 获取击杀该单位所得的最小金钱。
GetModelRadius(en) float GetModelRadius() 获取模型大小半径。
GetModifierCount(en) int GetModifierCount() 返回该单位所拥有的修改器数量。
GetModifierNameByIndex(en) string GetModifierNameByIndex(int a) 以下标值索引修改器,并返回修改器名称字符串。
GetModifierStackCount(en) int GetModifierStackCount(string modifierName, handle b) Gets the stack count of a given modifier.
GetMoveSpeedModifier(en) float GetMoveSpeedModifier(float a) No Description Set
GetMustReachEachGoalEntity(en) bool GetMustReachEachGoalEntity() 该单位是否被要求走访每个路径点?
GetNightTimeVisionRange(en) int GetNightTimeVisionRange() 返回夜间视野距离(将修改器并入计算)。
GetOpposingTeamNumber(en) int GetOpposingTeamNumber() No Description Set
GetPaddedCollisionRadius(en) float GetPaddedCollisionRadius() 获取单位碰撞体积半径。
GetPercentageBasedManaRegen(en) float GetPercentageBasedManaRegen() 获取基础魔力恢复值百分比。
GetPhysicalArmorBaseValue(en) float GetPhysicalArmorBaseValue() 返回基础护甲值。
GetPhysicalArmorValue(en) float GetPhysicalArmorValue() 返回当前的护甲值。
GetPlayerOwner(en) handle GetPlayerOwner() 获取拥有此单位的玩家实体。
GetPlayerOwnerID(en) int GetPlayerOwnerID() 获取拥有此单位的玩家ID。
GetProjectileSpeed(en) int GetProjectileSpeed() No Description Set
GetRangeToUnit(en) float GetRangeToUnit(handle a) No Description Set
GetSecondsPerAttack(en) float GetSecondsPerAttack() No Description Set
GetStatsBasedManaRegen(en) float GetStatsBasedManaRegen() 获取因智慧而增加的魔法恢复值。
GetTeamNumber(en) int GetTeamNumber() 获取该单位所属的队伍ID。
GetTotalPurchasedUpgradeGoldCost(en) int GetTotalPurchasedUpgradeGoldCost() 获取用在升级的金钱。
GetUnitLabel(en) string GetUnitLabel() No Description Set
GetUnitName(en) string GetUnitName() 获取单位名称。
GiveMana(en) void GiveMana(float a) 给予此单位指定的魔法值。(Giff me mana!)
HasAbility(en) bool HasAbility(string a) 以技能名称搜寻该单位是否拥有此技能。
HasAttackCapability(en) bool HasAttackCapability() No Description Set
HasFlyingVision(en) bool HasFlyingVision() No Description Set
HasFlyMovementCapability(en) bool HasFlyMovementCapability() No Description Set
HasGroundMovementCapability(en) bool HasGroundMovementCapability() No Description Set
HasInventory(en) bool HasInventory() No Description Set
HasItemInInventory(en) bool HasItemInInventory(string a) 以物品名称搜寻该单位是否拥有此物品。
HasModifier(en) bool HasModifier(string a) 以修改器名称搜寻该单位是否拥有此修改器。
HasMovementCapability(en) bool HasMovementCapability() No Description Set
HasScepter(en) bool HasScepter() No Description Set
Heal(en) void Heal(float amount, handle source) 治疗该单位。
Hold(en) void Hold() 命令单位在原地待命。
Interrupt(en) void Interrupt() No Description Set
InterruptChannel(en) void InterruptChannel() No Description Set
InterruptMotionControllers(en) void InterruptMotionControllers(bool a) Parameter boolean determines finding clear space.
IsAlive(en) bool IsAlive() 此单位是否还活着?
IsAncient(en) bool IsAncient() 该生物是否为远古野怪?
IsAttackImmune(en) bool IsAttackImmune() No Description Set
IsAttacking(en) bool IsAttacking() No Description Set
IsAttackingEntity(en) bool IsAttackingEntity(handle a) No Description Set
IsBlind(en) bool IsBlind() No Description Set
IsBlockDisabled(en) bool IsBlockDisabled() No Description Set
IsCommandRestricted(en) bool IsCommandRestricted() No Description Set
IsControllableByAnyPlayer(en) bool IsControllableByAnyPlayer() 该单位是否为非Bot玩家所控制?
IsCreature(en) bool IsCreature() 此单位是否为怪物类型单位?
IsDeniable(en) bool IsDeniable() No Description Set
IsDisarmed(en) bool IsDisarmed() No Description Set
IsDominated(en) bool IsDominated() No Description Set
IsEvadeDisabled(en) bool IsEvadeDisabled() No Description Set
IsFrozen(en) bool IsFrozen() No Description Set
IsHardDisarmed(en) bool IsHardDisarmed() No Description Set
IsHero(en) bool IsHero() 此单位是否为英雄或英雄幻象?
IsHexed(en) bool IsHexed() No Description Set
IsIdle(en) bool IsIdle() 该生物是否处于闲置状态?
IsIllusion(en) bool IsIllusion() 该单位是否为幻象单位?
IsInvisible(en) bool IsInvisible() No Description Set
IsInvulnerable(en) bool IsInvulnerable() No Description Set
IsLowAttackPriority(en) bool IsLowAttackPriority() No Description Set
IsMagicImmune(en) bool IsMagicImmune() 该单位是否魔法免疫?
IsMechanical(en) bool IsMechanical() 该单位是否为机械单位?
IsMovementImpaired(en) bool IsMovementImpaired() No Description Set
IsMuted(en) bool IsMuted() No Description Set
IsNeutralUnitType(en) bool IsNeutralUnitType() 该单位是否为野怪?
IsNightmared(en) bool IsNightmared() No Description Set
IsOpposingTeam(en) bool IsOpposingTeam(int a) No Description Set
IsOutOfGame(en) bool IsOutOfGame() No Description Set
IsOwnedByAnyPlayer(en) bool IsOwnedByAnyPlayer() 该单位是否为非Bot之玩家所有?
IsPhantom(en) bool IsPhantom() 该单位是否为幻象单位?
IsPhantomBlocker(en) bool IsPhantomBlocker() No Description Set
IsPhased(en) bool IsPhased() 是否在相位状态?
IsPositionInRange(en) bool IsPositionInRange(Vector a, float b) 是否在某点的范围内
IsRangedAttacker(en) bool IsRangedAttacker() 该单位攻击类型是否为远程攻击?
IsRealHero(en) bool IsRealHero() 返回该单位是否为真正的英雄单位,而非小兵或是幻象。
IsRooted(en) bool IsRooted() No Description Set
IsSilenced(en) bool IsSilenced() 该单位是否被沉默?
IsSoftDisarmed(en) bool IsSoftDisarmed() No Description Set
IsSpeciallyDeniable(en) bool IsSpeciallyDeniable() No Description Set
IsStunned(en) bool IsStunned() 该单位是否被晕眩了?
IsSummoned(en) bool IsSummoned() 此单位是否为召唤物?
IsTower(en) bool IsTower() 此单位是否为塔?
IsUnableToMiss(en) bool IsUnableToMiss() No Description Set
IsUnselectable(en) bool IsUnselectable() No Description Set
Kill(en) void Kill(handle a, handle b) 杀死一个单位,参数为使用的技能与攻击者。
MakeIllusion(en) void MakeIllusion() No Description Set
MakePhantomBlocker(en) void MakePhantomBlocker() No Description Set
MakeVisibleDueToAttack(en) void MakeVisibleDueToAttack(int a) No Description Set
MakeVisibleToTeam(en) void MakeVisibleToTeam(int a, float b) No Description Set
ManageModelChanges(en) void ManageModelChanges()
ModifyHealth(en) void ModifyHealth(int a, handle b, bool c, int d) 设置血量为所指定的值
MoveToNPC(en) void MoveToNPC(handle a) 移动至指定的单位。
MoveToNPCToGiveItem(en) void MoveToNPCToGiveItem(handle npc, handle item) 将身上的物品丢给指定的单位。
MoveToPosition(en) void MoveToPosition(Vector a) 移动到指定的位置。
MoveToPositionAggressive(en) void MoveToPositionAggressive(Vector a) 移动到指定的位置。
MoveToTargetToAttack(en) void MoveToTargetToAttack(handle a) 移动至指定的单位,并且发动攻击。
NoHealthBar(en) bool NoHealthBar() No Description Set
NoTeamMoveTo(en) bool NoTeamMoveTo() No Description Set
NoTeamSelect(en) bool NoTeamSelect() No Description Set
NotifyWearablesOfModelChange(en) void NotifyWearablesOfModelChange(bool bOriginalModel) 通知模型的可穿戴性发生了改变。
NotOnMinimap(en) bool NotOnMinimap() No Description Set
NotOnMinimapForEnemies(en) bool NotOnMinimapForEnemies() No Description Set
NoUnitCollision(en) bool NoUnitCollision() No Description Set
PassivesDisabled(en) bool PassivesDisabled() No Description Set
PerformAttack(en) void PerformAttack(handle hTarget, bool bUseCastAttackOrb, bool bProcessProcs, bool bSkipCooldown, bool bIgnoreInvis, bool bUseProjectile) 对一单位执行攻击。
PickupDroppedItem(en) void PickupDroppedItem(handle a) 捡起掉落的物品。
PickupRune(en) void PickupRune(handle a) 捡起神符。
ProvidesVision(en) bool ProvidesVision() No Description Set
Purge(en) void Purge(bool bRemovePositiveBuffs, bool bRemoveDebuffs, bool bFrameOnly, bool bRemoveStuns, bool bRemoveExceptions) (bool RemovePositiveBuffs, bool RemoveDebuffs, bool BuffsCreatedThisFrameOnly, bool RemoveStuns, bool RemoveExceptions 根据增益、减益等一系列条件,清除单位的BUFF。
ReduceMana(en) void ReduceMana(float a) 移除单位的魔力,不过是用在该单位非自愿失去魔力,而非用在使用技能消耗魔力的情况。
RemoveAbility(en) void RemoveAbility(string a) 以技能名称移除该单位相应的技能。
RemoveGesture(en) void RemoveGesture(int nActivity) 移除某个动作。
RemoveHorizontalMotionController(en) void RemoveHorizontalMotionController(handle hBuff) 移除水平方向上的运动控制器。
RemoveItem(en) void RemoveItem(handle a) 将该单位库存中的过期物品移除。
RemoveModifierByName(en) void RemoveModifierByName(string a) 以名称移除修改器。
RemoveModifierByNameAndCaster(en) void RemoveModifierByNameAndCaster(string a, handle b) 以施法者与修改器名称移除修改器。
RemoveNoDraw(en) void RemoveNoDraw() Remove the no draw flag.
RemoveVerticalMotionController(en) void RemoveVerticalMotionController(handle hBuff) 移除垂直方向上的运动控制器。
RespawnUnit(en) void RespawnUnit() 复活该单位。
TakeItem(en) void TakeItem(handle hItem) 隐藏物品
SellItem(en) void SellItem(handle a) 卖出该单位的物品。
SetAbilityByIndex(en) void SetAbilityByIndex(handle hAbility, int iIndex) 改变技能Index
SetAcquisitionRange(en) void SetAcquisitionRange(float a) Sets acquisition range
SetAdditionalBattleMusicWeight(en) void SetAdditionalBattleMusicWeight(float a) 获取当与该单位战斗时将会计算的战斗音乐权重。
SetAggroTarget(en) void SetAggroTarget(handle hAggroTarget) 将这个单位的仇恨目标设为某个单位。
SetAttackCapability(en) void SetAttackCapability(int a) No Description Set
SetAttacking(en) void SetAttacking(handle a) No Description Set
SetBaseAttackTime(en) void SetBaseAttackTime(float a) No Description Set
SetBaseDamageMax(en) void SetBaseDamageMax(int a) 设置基础最大攻击力。
SetBaseDamageMin(en) void SetBaseDamageMin(int a) 设置基础最小攻击力。
SetBaseHealthRegen(en) void SetBaseHealthRegen(float a) No Description Set
SetBaseMagicalResistanceValue(en) void SetBaseMagicalResistanceValue(float a) 设置基础魔法抗性值。
SetBaseManaRegen(en) void SetBaseManaRegen(float a) 设置基础魔力恢复值。
SetBaseMaxHealth(en) void SetBaseMaxHealth(float a) 设置基础最大血量。
SetBaseMoveSpeed(en) void SetBaseMoveSpeed(int a) 设置基础跑速。
SetCanSellItems(en) void SetCanSellItems(bool bCanSell) 设置这个单位是否能出售物品。
SetControllableByPlayer(en) void SetControllableByPlayer(int a, bool b) 以玩家ID设置该单位的控制权。
SetCursorCastTarget(en) void SetCursorCastTarget(handle a) No Description Set
SetCursorPosition(en) void SetCursorPosition(Vector a) No Description Set
SetCursorTargetingNothing(en) void SetCursorTargetingNothing(bool a) No Description Set
SetDayTimeVisionRange(en) void SetDayTimeVisionRange(int a) 设置基础的视间视野距离。
SetDeathXP(en) void SetDeathXP(int a) 设置该单位的击杀经验值奖赏。
SetDeathXP(en) void SetDeathXP(int iXPBounty) Set the XP bounty on this unit
SetForceAttackTarget(en) void SetForceAttackTarget(handle a) No Description Set
SetHasInventory(en) void SetHasInventory(bool a) No Description Set
SetHullRadius(en) void SetHullRadius(float a) 设置该单位的碰撞半径。
SetIdleAcquire(en) void SetIdleAcquire(bool a) No Description Set
SetInitialGoalEntity(en) void SetInitialGoalEntity(handle a) 设置该单位的初始路径点。
SetMana(en) void SetMana(float a) 设置该单位的魔力值。
SetMaximumGoldBounty(en) void SetMaximumGoldBounty(int a) 设置该单位的最高赏金。
SetMinimumGoldBounty(en) void SetMinimumGoldBounty(int a) 设置该单位的最低赏金。
SetModifierStackCount(en) void SetModifierStackCount(string modifierName, handle b, int modifierCount) Sets the stack count of a given modifier.
SetMoveCapability(en) void SetMoveCapability(int a) No Description Set
SetMustReachEachGoalEntity(en) void SetMustReachEachGoalEntity(bool a) 设置该单位是否要走访每个路径点。
SetNeverMoveToClearSpace(en) void SetNeverMoveToClearSpace(bool a) 如果设置为True,则不会将该单位移动到净空的地方。
SetNightTimeVisionRange(en) void SetNightTimeVisionRange(int a) 设置基础夜间视野距离。
SetOrigin(en) void SetOrigin(Vector vLocation) 设置单位位置。
SetOriginalModel(en) void SetOriginalModel(string originalModel) 设置单位原模型。
SetPhysicalArmorBaseValue(en) void SetPhysicalArmorBaseValue(float a) 设置基础护甲值。
SetRangedProjectileName(en) void SetRangedProjectileName(string a) No Description Set
SetRenderAlpha(en) void SetRenderAlpha( int alpha ) No Description Set
SetStolenScepter(en) void SetStolenScepter(bool a) No Description Set
SetUnitName(en) void SetUnitName(string a) No Description Set
ShouldIdleAcquire(en) bool ShouldIdleAcquire() No Description Set
SpendMana(en) void SpendMana(float a, handle b) 消耗魔力,可以用在技能消耗或使用物品。
StartGesture(en) void StartGesture(int nActivity) 向单位添加给定的动作。
StartGestureWithPlaybackRate(en) void StartGestureWithPlaybackRate(int nActivity, float flRate ) 向单位添加给定的动作,带有自定义的动作速度。
Stop(en) void Stop() 使该单位暂停当前动作。
SwapAbilities(en) void SwapAbilities(string a, string b, bool c, bool d) 交换两个技能的字段,并设置其是否生效。
SwapItems(en) void SwapItems(int nSlot1, int nSlot2) 交换两个物品的位置。
TimeUntilNextAttack(en) float TimeUntilNextAttack() No Description Set
TriggerModifierDodge(en) bool TriggerModifierDodge() No Description Set
TriggerSpellAbsorb(en) bool TriggerSpellAbsorb(handle a) 判断传递的技能是否会触发该单位的技能吸收
TriggerSpellReflect(en) void TriggerSpellReflect(handle hAbility) 触发类似于清莲宝珠一样的效果。
UnitCanRespawn(en) bool UnitCanRespawn() No Description Set

CDOTA_BaseNPC_Hero

extends CDOTA_BaseNPC

'

函数名 函数原型 解释
AddExperience(en) bool AddExperience(float amount, bool applyBotDifficultyScaling) 给单位增加经验值
Buyback(en) void Buyback() 花费金钱并买活英雄
CalculateStatBonus(en) void CalculateStatBonus() 英雄返回属性后,重新计算全部属性
CanEarnGold(en) bool CanEarnGold() 返回布尔值,买活返回金钱限制时间是否少于游戏时间(其实就是是否能够正常返回金钱.....)
ClearLastHitMultikill(en) void ClearLastHitMultikill() 数值存储在玩家资源(PlayerResource)中
ClearLastHitStreak(en) void ClearLastHitStreak() 数值存储在玩家资源(PlayerResource)中
ClearStreak(en) void ClearStreak() 数值存储在玩家资源(PlayerResource)中
GetAbilityPoints(en) int GetAbilityPoints() 返回未分配的技能点数
GetAdditionalOwnedUnits(en) table GetAdditionalOwnedUnits() 返回玩家拥有的额外单位
GetAgility(en) float GetAgility() 返回敏捷值
GetAgilityGain(en) float GetAgilityGain() 返回敏捷成长
GetAssists(en) int GetAssists() 返回助攻数,数值存储在玩家资源(PlayerResource)中
GetAttacker(en) int GetAttacker(int a) No Description Set
GetBaseAgility(en) float GetBaseAgility() 返回基础敏捷
GetBaseDamageMax(en) int GetBaseDamageMax() 返回基础攻击伤害最大值,英雄的基础攻击伤害也会受到属性影响
GetBaseDamageMin(en) int GetBaseDamageMin() 返回基础攻击伤害最小值,英雄的基础攻击伤害也会受到属性影响
GetBaseIntellect(en) float GetBaseIntellect() 返回基础智力
GetBaseStrength(en) float GetBaseStrength() 返回基础力量
GetBonusDamageFromPrimaryStat(en) int GetBonusDamageFromPrimaryStat() 返回来自主属性奖励的攻击伤害值
GetBuybackCooldownTime(en) float GetBuybackCooldownTime() 返回该英雄买活CD的剩余时间
GetBuybackCost(en) int GetBuybackCost() 返回买活所需金钱
GetBuybackGoldLimitTime(en) float GetBuybackGoldLimitTime() 返回买活所带来的金钱惩罚剩余时间
GetCurrentXP(en) int GetCurrentXP() 返回当前经验值
GetDeathGoldCost(en) int GetDeathGoldCost() 返回死亡损失金钱
GetDeaths(en) int GetDeaths() 返回死亡次数
GetDenies(en) int GetDenies() 返回反补次数
GetGold(en) int GetGold() 返回该英雄拥有者所有的金钱数量
GetGoldBounty(en) int GetGoldBounty() No Description Set
GetHealthRegen(en) float GetHealthRegen() 返回每秒生命回复,英雄生命回复受到属性影响
GetIncreasedAttackSpeed(en) float GetIncreasedAttackSpeed() 返回攻击速度增加值(IAS),英雄攻击速度受到敏捷影响
GetIntellect(en) float GetIntellect() 返回智力值
GetIntellectGain(en) float GetIntellectGain() 返回智力成长
GetKills(en) int GetKills() 返回击杀数,数值存储在玩家资源(PlayerResource)中
GetLastHits(en) int GetLastHits() 返回正补数,数值存储在玩家资源(PlayerResource)中
GetManaRegen(en) float GetManaRegen() 返回每秒魔法回复,英雄魔法回复受到属性影响
GetMostRecentDamageTime(en) float GetMostRecentDamageTime() 返回最近一次伤害时间
GetMultipleKillCount(en) int GetMultipleKillCount() 返回多杀计数
GetNumAttackers(en) int GetNumAttackers() No Description Set
GetNumItemsInInventory(en) int GetNumItemsInInventory() 返回玩家拥有的物品数量。
GetNumItemsInStash(en) int GetNumItemsInStash() 返回玩家储藏处内
GetPhysicalArmorValue(en) float GetPhysicalArmorValue() 返回护甲值,英雄护甲受到属性影响
GetPlayerID(en) int GetPlayerID() 返回英雄拥有者的ID
GetPrimaryAttribute(en) int GetPrimaryAttribute() 返回英雄主要属性,0 = 力量, 1 = 敏捷, 2 = 智力.
GetPrimaryStatValue(en) float GetPrimaryStatValue() 返回主属性值
GetRespawnsDisabled(en) bool GetRespawnsDisabled() 返回该英雄是否被禁止复活。
GetRespawnTime(en) float GetRespawnTime() 返回复活时间
GetStatsBasedManaRegen(en) float GetStatsBasedManaRegen() 返回属性提供的魔法回复
GetStreak(en) int GetStreak() 返回连杀数
GetStrength(en) float GetStrength() 返回力量值
GetStrengthGain(en) float GetStrengthGain() 返回力量成长
GetTimeUntilRespawn(en) float GetTimeUntilRespawn() 返回复活所需的时间
GetTogglableWearable(en) handle GetTogglableWearable(int nSlotType) 返回物品栏中可佩带(可切换)的物品。
HasAnyAvailableInventorySpace(en) bool HasAnyAvailableInventorySpace() 返回是否有可用物品栏空间
HasFlyingVision(en) bool HasFlyingVision() 返回是否拥有空中视野
HasOwnerAbandoned(en) bool HasOwnerAbandoned() No Description Set
HasRoomForItem(en) int HasRoomForItem(string a, bool b, bool c) 参数: const char pItemName, bool bIncludeStashCombines, bool bAllowSelling
HeroLevelUp(en) void HeroLevelUp(bool a) 升级英雄, 参数决定是否播放升级效果.
IncrementAssists(en) void IncrementAssists() 数值存储在玩家资源(PlayerResource)中
IncrementDeaths(en) void IncrementDeaths() 数值存储在玩家资源(PlayerResource)中
IncrementDenies(en) void IncrementDenies() 数值存储在玩家资源(PlayerResource)中
IncrementKills(en) void IncrementKills(int kills) 增加击杀数,击杀者为当前英雄,传入ID为受害者ID。数值存储在玩家资源(PlayerResource)中
IncrementLastHitMultikill(en) void IncrementLastHitMultikill() 数值存储在玩家资源(PlayerResource)中
IncrementLastHits(en) void IncrementLastHits() 数值存储在玩家资源(PlayerResource)中
IncrementLastHitStreak(en) void IncrementLastHitStreak() 数值存储在玩家资源(PlayerResource)中
IncrementNearbyCreepDeaths(en) void IncrementNearbyCreepDeaths() 数值存储在玩家资源(PlayerResource)中
IncrementStreak(en) void IncrementStreak() 数值存储在玩家资源(PlayerResource)中
IsBuybackDisabledByReapersScythe(en) bool IsBuybackDisabledByReapersScythe() 是否被死神镰刀禁止买活
IsReincarnating(en) bool IsReincarnating() 是否处于重生中
KilledHero(en) void KilledHero(handle a, handle b) 参数: 英雄, 加害者
ModifyAgility(en) void ModifyAgility(float a) 增加指定值到英雄基础敏捷,随后调用CalculateStatBonus
ModifyGold(en) int ModifyGold(int goldAmmt, bool reliable, int reason) 给予英雄金钱。参数: int 金钱数, bool 是否为可靠金钱, int 原因
ModifyIntellect(en) void ModifyIntellect(float a) 增加指定值到英雄基础智力,随后调用CalculateStatBonus
ModifyStrength(en) void ModifyStrength(float a) 增加指定值到英雄基础力量,随后调用CalculateStatBonus
PerformTaunt(en) void PerformTaunt() No Description Set
RecordLastHit(en) void RecordLastHit() No Description Set
RespawnHero(en) void RespawnHero(bool buyback, bool IsActuallyBeingSpawnedForTheFirstTime, bool RespawnPenalty)
SetAbilityPoints(en) void SetAbilityPoints(int a) 设置当前可用技能点
SetBaseAgility(en) void SetBaseAgility(float a) 设置基础敏捷
SetBaseIntellect(en) void SetBaseIntellect(float a) 设置基础智力
SetBaseStrength(en) void SetBaseStrength(float a) 设置基础力量
SetBotDifficulty(en) void SetBotDifficulty(int nDifficulty) 设置人机对战的难度。
SetBuybackCooldownTime(en) void SetBuybackCooldownTime(float a) 设置买活冷却时间
SetBuyBackDisabledByReapersScythe(en) void SetBuyBackDisabledByReapersScythe(bool a) 设置是否被死神镰刀禁止买活
SetBuybackGoldLimitTime(en) void SetBuybackGoldLimitTime(float a) 设置买活后金钱惩罚时间
SetCustomDeathXP(en) void SetCustomDeathXP(int a) GameRules boolean must be set for this to work!}}
SetGold(en) void SetGold(int amount, bool reliableGold) 设置英雄拥有者的金钱
SetPlayerID(en) void SetPlayerID(int a) No Description Set
SetPrimaryAttribute(en) void SetPrimaryAttribute(int nPrimaryAttribute) 设置英雄的主属性值。
SetRespawnPosition(en) void SetRespawnPosition(Vector a) No Description Set
SetRespawnsDisabled(en) void SetRespawnsDisabled(bool bDisableRespawns) 禁止英雄复活。
SetTimeUntilRespawn(en) void SetTimeUntilRespawn(float a) No Description Set
ShouldDoFlyHeightVisual(en) bool ShouldDoFlyHeightVisual() No Description Set
SpendGold(en) void SpendGold(int amount, int reason) 参数: int 金钱, int 原因
UnitCanRespawn(en) bool UnitCanRespawn() No Description Set
UpgradeAbility(en) void UpgradeAbility(handle a) 升级指定技能,需要英雄拥有该技能和技能点
WillReincarnate(en) bool WillReincarnate() No Description Set

CDOTA_BaseNPC_Creature

extends CDOTA_BaseNPC

No Description Set

函数名 函数原型 解释
AddItemDrop(en) void AddItemDrop(handle a) 为该生物添加特别的道具掉落
CreatureLevelUp(en) void CreatureLevelUp(int a) 升级目标生物指定级别
IsChampion(en) bool IsChampion() 是否为冠军生物
SetArmorGain(en) void SetArmorGain(float a) 设置该生物每级增加的护甲
SetAttackTimeGain(en) void SetAttackTimeGain(float a) 设置该生物每级增加的攻击速度
SetBountyGain(en) void SetBountyGain(int a) 设置该生物每级增加的奖励金币
SetChampion(en) void SetChampion(bool a) 将该生物标记为冠军生物
SetDamageGain(en) void SetDamageGain(int a) 设置该生物每级增加的攻击伤害
SetDisableResistanceGain(en) void SetDisableResistanceGain(float a) 设置该生物每级增加的控制抗性
SetHPGain(en) void SetHPGain(int a) 设置该生物每级增加的生命值
SetHPRegenGain(en) void SetHPRegenGain(float a) 设置该生物每级增加的生命回复
SetMagicResistanceGain(en) void SetMagicResistanceGain(float a) 设置该生物每级增加的魔法抗性
SetManaGain(en) void SetManaGain(int a) 设置该生物每级增加的魔法值
SetManaRegenGain(en) void SetManaRegenGain(float a) 设置该生物每级增加的魔法回复
SetMoveSpeedGain(en) void SetMoveSpeedGain(int a) 设置该生物每级增加的移动速度
SetXPGain(en) void SetXPGain(int a) 设置该生物每级增加的经验值



CDOTA_BaseNPC_Building

extends CDOTA_BaseNPC

No Description Set

函数名 函数原型 解释
GetInvulnCount(en) int GetInvulnCount() 返回建筑无敌计数
SetInvulnCount(en) void SetInvulnCount(int a) 设置建筑无敌计数



CRPG_Unit

No Description Set

函数名 函数原型 解释
ActionState(en) handle ActionState() 返回该单位的ActionState物体
ClearMovementTarget(en) void ClearMovementTarget() 清除移动目标实体或点
FindSensedEnemies(en) table FindSensedEnemies() 返回该单位视野锥或感应球体内所有敌方单位列表
GetMaxSpeed(en) float GetMaxSpeed() 返回最大移动速度
GetMaxStamina(en) float GetMaxStamina() 返回最大耐力值
GetMovementTargetEntity(en) handle GetMovementTargetEntity() 返回移动目标实体,如果已经设置移动目标实体
GetSensingSphereRange(en) float GetSensingSphereRange() 返回单位的360度感应球体范围
GetSightConeAngle(en) float GetSightConeAngle() 返回单位视野锥的夹角
GetSightConeRange(en) float GetSightConeRange() 返回单位视野锥的范围
GetStamina(en) float GetStamina() 返回当前耐力值
GetTurnRate(en) float GetTurnRate() 返回单位转身速度,单位为度每秒
GetUnitName(en) string GetUnitName() 返回单位名字
GrantItem(en) void GrantItem(string a, bool b) 授予单位物品
IsBlocking(en) bool IsBlocking() 单位是否正在格挡(不确定)
IsFacing(en) bool IsFacing(Vector a, float b) 参数为(Vector目标点,float允许角度差)如果单位朝向目标角度低于角度差则返还true
SetBlocking(en) void SetBlocking(bool a) 设置单位格挡状态(不确定)
SetMaxSpeed(en) void SetMaxSpeed(float a) 设置单位最大速度
SetMovementTargetEntity(en) void SetMovementTargetEntity(handle a, float b) 参数为(目标实体,跟随范围)单位向目标实体移动直到抵达指定范围内
SetMovementTargetPosition(en) void SetMovementTargetPosition(Vector a, float b) 参数为(目标点,跟随范围)单位向目标点移动直到抵达指定范围内
SetSensingSphereRange(en) void SetSensingSphereRange(float a) 设置单位的360度感应球体范围
SetSightConeAngle(en) void SetSightConeAngle(float a) 设置单位的视野锥夹角
SetSightConeRange(en) void SetSightConeRange(float a) 设置单位的视野锥范围
SetTurnRate(en) void SetTurnRate(float a) 设置单位转向速率(度每秒)



CDOTABaseGameMode

extends CBaseEntity

No Description Set

函数名 函数原型 解释
ClearAbilityTuningValueFilter(en) void ClearAbilityTuningValueFilter() 清除脚本过滤器--有关技能中所用到的调整值的
ClearBountyRunePickupFilter(en) void ClearBountyRunePickupFilter() 清除脚本过滤器--控制触发赏金符时的行为的
ClearDamageFilter(en) void ClearDamageFilter() 清除脚本过滤器--控制单位造成伤害
ClearExecuteOrderFilter(en) void ClearExecuteOrderFilter() 清除脚本过滤器--在单位捡起物品时生效的
ClearItemAddedToInventoryFilter(en) void ClearItemAddedToInventoryFilter() 清除脚本过滤器--在物品放入物品栏时生效的
ClearModifierGainedFilter(en) void ClearModifierGainedFilter() 清除脚本过滤器--控制Modifier控制器的
ClearModifyExperienceFilter(en) void ClearModifyExperienceFilter() 清除脚本过滤器--控制单位的经验机制的
ClearModifyGoldFilter(en) void ClearModifyGoldFilter() 清除脚本过滤器--控制英雄金钱机制的
ClearRuneSpawnFilter(en) void ClearRuneSpawnFilter() 清除脚本过滤器--控制神符刷新的
ClearTrackingProjectileFilter(en) void ClearTrackingProjectileFilter() 清除脚本过滤器--控制追踪投射物的
ClientLoadGridNav(en) void ClientLoadGridNav() 通知客户端需要载入网格信息,可用于允许客户端确定允许建筑的区域等
GetAlwaysShowPlayerNames(en) bool GetAlwaysShowPlayerNames() No Description Set
GetAlwaysShowPlayerInventory(en) bool GetAlwaysShowPlayerInventory() 返回是否不论任何单位被选中,始终在HUD上显示英雄的物品库存
GetAnnouncerDisabled(en) bool GetAnnouncerDisabled() 返回游戏内播音员是否被禁用
GetCameraDistanceOverride(en) float GetCameraDistanceOverride() 返回是否设置摄像机距离Dota内的默认值为1134
GetCustomBuybackCooldownEnabled(en) bool GetCustomBuybackCooldownEnabled() 返回是否允许自定义的买活CD
GetCustomBuybackCostEnabled(en) bool GetCustomBuybackCostEnabled() 返回是否允许自定义的买活金钱
GetCustomHeroMaxLevel(en) int GetCustomHeroMaxLevel() 返回是否允许改变英雄的最高等级(默认25)
GetFixedRespawnTime(en) float GetFixedRespawnTime() 返回是否返回固定的复活时间
GetFogOfWarDisabled(en) bool GetFogOfWarDisabled() 返回是否关闭/开启战争迷雾
GetGoldSoundDisabled(en) bool GetGoldSoundDisabled() 返回是否开启/关闭获得金钱时的音效
GetMaximumAttackSpeed(en) int GetMaximumAttackSpeed() 获取单位的最大攻击速度
GetMinimumAttackSpeed(en) int GetMinimumAttackSpeed() 获取单位的最小攻击速度
GetRecommendedItemsDisabled(en) bool GetRecommendedItemsDisabled() 返回是否开启/关闭推荐出装在商店中的显示
GetStashPurchasingDisabled(en) bool GetStashPurchasingDisabled() 返回是否关闭/开启储藏处购买功能。如果该功能被关闭,英雄必须在商店范围内购买物品
GetStickyItemDisabled(en) bool GetStickyItemDisabled() 返回是否隐藏快速购买处的物品
GetTopBarTeamValuesOverride(en) bool GetTopBarTeamValuesOverride() 返回是否覆盖游戏界面顶部的队伍比分
GetTopBarTeamValuesVisible(en) bool GetTopBarTeamValuesVisible() 返回是否关闭/开启游戏界面顶部的队伍比分
GetTowerBackdoorProtectionEnabled(en) bool GetTowerBackdoorProtectionEnabled() 返回是否启用/禁用偷塔保护
GetUseCustomHeroLevels(en) bool GetUseCustomHeroLevels() 返回自定义经验机制是否被使用
IsBuybackEnabled(en) bool IsBuybackEnabled() 返回是否启用/禁用买活
SetAbilityTuningValueFilter(en) void SetAbilityTuningValueFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制技能所用到的调整值(修改数据table并返回True来使用新值,, 返回False来使用旧值)
SetAlwaysShowPlayerNames(en) void SetAlwaysShowPlayerNames(bool bShow) No Description Set
SetAlwaysShowPlayerInventory(en) void SetAlwaysShowPlayerInventory(bool bAlwaysShow) 不论任何单位被选中,始终在HUD上显示英雄的物品库存
SetAnnouncerDisabled(en) void SetAnnouncerDisabled(bool enabled) 禁用播音员
SetBotsAlwaysPushWithHuman(en) void SetBotsAlwaysPushWithHuman(bool bAlwaysPush) 设置Bot玩家是否总是跟从人类玩家进行推进
SetBotsInLateGame(en) void SetBotsInLateGame(bool bLateGame) Set if bots should enable their late game behavior.
SetBotsMaxPushTier(en) void SetBotsMaxPushTier(int nMaxTier) 设置Bot玩家将推进到哪一级别的防御塔(-1代表不推进)
SetBotThinkingEnabled(en) void SetBotThinkingEnabled(bool a) 允许/禁止机器人思考,需要与Dota PvP高度相似的三路线地图、商店等
SetBountyRunePickupFilter(en) void SetBountyRunePickupFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制触发赏金符时的行为(改变数据表并返回True来使用新值, 返回False来取消事件)
SetBuybackEnabled(en) void SetBuybackEnabled(bool a) 完全允许/禁止买活
SetCameraDistanceOverride(en) void SetCameraDistanceOverride(float a) 设置默认的镜头距离Dota默认为1134
SetCustomBuybackCooldownEnabled(en) void SetCustomBuybackCooldownEnabled(bool a) 开启该选项来允许自定义买活冷却时间
SetCustomBuybackCostEnabled(en) void SetCustomBuybackCostEnabled(bool a) 开启该选项来允许自定义买活花费
SetCustomGameForceHero(en) void SetCustomGameForceHero(string pHeroName) 强制单人游戏英雄的选择
SetCustomHeroMaxLevel(en) void SetCustomHeroMaxLevel(int maxLevel) 定义最大英雄等级(默认为25)
SetCustomXPRequiredToReachNextLevel(en) void SetCustomXPRequiredToReachNextLevel(handle a) 定义英雄经验值表(table)
SetDamageFilter(en) void SetDamageFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制单位受到伤害时的行为 (改变数据表并返回True来使用新值, 返回False来取消事件)
SetExecuteOrderFilter(en) void SetExecuteOrderFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制单位捡起物品时的行为 (改变数据表并返回True来使用新值, 返回False来取消事件)
SetFixedRespawnTime(en) void SetFixedRespawnTime(float time) Sets the dota respawn time. -1 for default behavior
SetFogOfWarDisabled(en) void SetFogOfWarDisabled(bool a) 开关战争迷雾
SetFountainConstantManaRegen(en) void SetFountainConstantManaRegen(float flConstantManaRegen) 设定泉水给予的固定魔法的恢复速率(默认为-1)
SetFountainPercentageHealthRegen(en) void SetFountainPercentageHealthRegen(float flPercentageHealthRegen) 设定泉水给予的的百分比生命恢复速率(默认为-1)
SetFountainPercentageManaRegen(en) void SetFountainPercentageManaRegen(float flPercentageManaRegen) 设定泉水给予的百分比魔法恢复速率(默认为-1)
SetGoldSoundDisabled(en) void SetGoldSoundDisabled(bool a) 是否禁止获取金钱时的声音提示
SetHUDVisible(en) void SetHUDVisible(int iHUDElement, bool bVisible) 设置HUD元素是否可见
SetItemAddedToInventoryFilter(en) void SetItemAddedToInventoryFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制物品被放入物品栏时的行为。
SetLoseGoldOnDeath(en) void SetLoseGoldOnDeath(bool bEnabled) 设置禁用死亡时损失金钱
SetMaximumAttackSpeed(en) void SetMaximumAttackSpeed(int nMaxSpeed) 设置单位的最大攻击速度
SetMinimumAttackSpeed(en) void SetMinimumAttackSpeed(int nMinSpeed) 设置单位的最小攻击速度
SetModifierGainedFilter(en) void SetModifierGainedFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制Modifier的获得, 返回Flase来删除Modifier
SetModifyExperienceFilter(en) void SetModifyExperienceFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制英雄经验值被改变时的行为(改变数据表并返回True来使用新值, 返回False来取消事件)
SetModifyGoldFilter(en) void SetModifyGoldFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制英雄的金钱被改变时的行为(改变数据表并返回True来使用新值, 返回False来取消事件)
SetOverrideSelectionEntity(en) void SetOverrideSelectionEntity(handle unit) 覆盖默认选择实体,替代所有玩家的英雄
SetRecommendedItemsDisabled(en) void SetRecommendedItemsDisabled(bool a) 是否禁止显示商店中的推荐购买物品
SetRemoveIllusionsOnDeath(en) void SetRemoveIllusionsOnDeath(bool a) 使幻象死亡时立即消失,而不是延迟数秒
SetRuneEnabled(en) void SetRuneEnabled(int nRune, bool bEnabled) 设定某种神符是否启用
SetRuneSpawnFilter(en) void SetRuneSpawnFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制神符的刷新(改变数据表并返回True来使用新值, 返回False来取消事件)
SetStashPurchasingDisabled(en) void SetStashPurchasingDisabled(bool bDisabled) 是否关闭/开启储藏处购买功能。如果该功能被关闭,英雄必须在商店范围内购买物品
SetStickyItemDisabled(en) void SetStickyItemDisabled(bool bDisabled) 隐藏快速购买处的物品
SetTopBarTeamValue(en) void SetTopBarTeamValue(int a, int b) 设置顶端的队伍数值
SetTopBarTeamValuesOverride(en) void SetTopBarTeamValuesOverride(bool a) 是否覆盖顶端的队伍数值
SetTopBarTeamValuesVisible(en) void SetTopBarTeamValuesVisible(bool a) 开关顶端的队伍数值
SetTowerBackdoorProtectionEnabled(en) void SetTowerBackdoorProtectionEnabled(bool a) 开关偷塔保护
SetTrackingProjectileFilter(en) void SetTrackingProjectileFilter(handle hFunction, handle hContext) 设置一个过滤器,用来控制追踪投射物(改变数据表并返回True来使用新值, 返回False来取消事件)
SetUnseenFogOfWarEnabled(en) void SetUnseenFogOfWarEnabled(bool bEnabled) 启用/禁用战争迷雾。启用时,玩家从未探测过的区域将会完全被战争迷雾掩盖
SetUseCustomHeroLevels(en) void SetUseCustomHeroLevels(bool a) 开关自定义英雄英雄经验表,该表必须提前被定义

CDotaQuest

extends CBaseEntity

A quest, as seen in the Tutorial and Frostivus

函数名 函数原型 解释
AddSubquest(en) void AddSubquest(handle a) 为该任务添加子任务
CompleteQuest(en) void CompleteQuest() 标记该任务完成
GetSubquest(en) handle GetSubquest(int a) 用索引号找到该任务的子任务
GetSubquestByName(en) handle GetSubquestByName(string a) 用任务名称找到该任务的子任务
RemoveSubquest(en) void RemoveSubquest(handle a) 从该任务移除一个子任务
SetTextReplaceString(en) void SetTextReplaceString(string a) 设置该任务的文本取代字符串
SetTextReplaceValue(en) void SetTextReplaceValue(int a, int b) 设置任务数值



CDotaSubquestBase

extends CDotaQuest

No Description Set

函数名 函数原型 解释
CompleteSubquest(en) void CompleteSubquest() 完成子任务
SetTextReplaceString(en) void SetTextReplaceString(string a) 设置该子任务的文本取代字符串
SetTextReplaceValue(en) void SetTextReplaceValue(int a, int b) 设置子任务数值



CPhysicsComponent

No Description Set

函数名 函数原型 解释
ExpensiveInstantRayCast(en) bool ExpensiveInstantRayCast(Vector a, Vector b, handle c) 进行一个立即(即阻挡)的光线投射,稍后会有handle/queue版本,并不计划实际使用这个!



CPointTemplate

No Description Set

函数名 函数原型 解释
DeleteCreatedSpawnGroups(en) void DeleteCreatedSpawnGroups() 删除任何该点模板的刷新组。提示:并不删除点模板
ForceSpawn(en) void ForceSpawn() 强制刷新该点模板指向的全部实体
GetSpawnedEntities(en) handle GetSpawnedEntities() 获取最近被刷新的实体
SetSpawnCallback(en) void SetSpawnCallback(handle a, handle b) 设置刷新回调(hCallbackFunc, hCallbackScope, hCallbackData ),当模板产生实体时回调。被刷新的实体作为数组被传入



CBodyComponent

No Description Set

函数名 函数原型 解释
AddImpulseAtPosition(en) void AddImpulseAtPosition(Vector a, Vector b) 在指定的世界位置施加一个物理推动
AddVelocity(en) void AddVelocity(Vector a, Vector b) 为物理物件增加一个线速度或角速度
DetachFromParent(en) void DetachFromParent() 从其父项(parent)中分离
GetSequence(en) <unknown> GetSequence() 返回激活的序列(sequence)
IsAttachedToParent(en) bool IsAttachedToParent() 是否依附父项(parent)
LookupSequence(en) <unknown> LookupSequence(string a) 输入名字返回序列(sequence)ID
SequenceDuration(en) float SequenceDuration(string a) 按秒数返回指定序列(sequence)的持续时间
SetAngularVelocity(en) void SetAngularVelocity(Vector a) No Description Set
SetAnimation(en) void SetAnimation(string a) 输入动画名称播放动作,需要模型拥有该动画
SetBodyGroup(en) void SetBodyGroup(string a) No Description Set
SetMaterialGroup(en) void SetMaterialGroup(utlstringtoken a) No Description Set
SetVelocity(en) void SetVelocity(Vector velocity) No Description Set



CBaseAnimating

extends CBaseEntity

A class containing functions involved in animations

函数名 函数原型 解释
GetAttachmentAngles(en) Vector GetAttachmentAngles(int a) 获得指定ID附件的角度,返回vector(p,y,r)
GetAttachmentOrigin(en) Vector GetAttachmentOrigin(int a) 获得指定ID附件的源vector
GetModelScale(en) float GetModelScale() 获取实体的模型比例。
IsSequenceFinished(en) bool IsSequenceFinished() 查询主序列是否播放结束
ScriptLookupAttachment(en) int ScriptLookupAttachment(string a) 获得指定名序列的ID
SetBodygroup(en) void SetBodygroup(int a, int b) 设置一个bodygroup
SetModelScale(en) void SetModelScale(float scale) 设置模型放大率。如果模型缩放为1,使用SetModelScale(10.0)将放大率设置成10.0.
SetPoseParameter(en) float SetPoseParameter(string a, float b) 将指定的位置参数(pose parameter)设定为指定值

CBaseCombatCharacter

No Description Set

函数名 函数原型 解释
GetEquippedWeapons(en) table GetEquippedWeapons() GetEquippedWeapons(): 获取一个装备武器的数组
GetWeaponCount(en) int GetWeaponCount() GetWeaponCount(): 获取当前装备的武器数量



ProjectileManager

The projectile manager, it manages projectiles.

函数名 函数原型 解释
CreateLinearProjectile(en) int CreateLinearProjectile(table infoTable) 创建一个线性投射物并返回其ID
CreateTrackingProjectile(en) void CreateTrackingProjectile(handle a) 创建一个追踪投射物
DestroyLinearProjectile(en) void DestroyLinearProjectile(int a) 摧毁指定ID的线性投射物
GetLinearProjectileVelocity(en) Vector GetLinearProjectileVelocity(int int_1) 返回一个表示当前投射物速度的向量。
ProjectileDodge(en) void ProjectileDodge(handle a) 使得特定单位躲避投射物

CBaseTrigger

extends CBaseEntity

No Description Set

函数名 函数原型 解释
Disable(en) void Disable() 禁止触发器
Enable(en) void Enable() 允许触发器
IsTouching(en) bool IsTouching(handle a) 检查指定实体是否正在接触触发器



CEnvEntityMaker

extends CBaseEntity

No Description Set

函数名 函数原型 解释
SpawnEntity(en) void SpawnEntity() 在生成器的位置创建一个实体
SpawnEntityAtEntityOrigin(en) void SpawnEntityAtEntityOrigin(handle a) 在指定实体的位置立刻创建一个实体
SpawnEntityAtLocation(en) void SpawnEntityAtLocation(Vector a, Vector b) 在指定位置和方向创建一个实体,方向是角度制欧拉角(pitch, yaw, roll)
SpawnEntityAtNamedEntityOrigin(en) void SpawnEntityAtNamedEntityOrigin(string a) 在指定名字实体的位置创建一个实体



CDOTAVoteSystem

No Description Set

函数名 函数原型 解释
StartVote(en) void StartVote(handle a) 开始投票,详细由传入的table制定



CMarkupVolumeTagged

No Description Set

函数名 函数原型 解释
HasTag(en) bool HasTag(string a) 查询该卷是否带有指定标签



CScriptPrecacheContext

No Description Set

函数名 函数原型 解释
AddResource(en) void AddResource(string a) 预缓存指定资源
GetValue(en) table GetValue(string a) 读取一个键值(spawn key)



CScriptKeyValues

No Description Set

函数名 函数原型 解释
GetValue(en) table GetValue(string a) Reads a spawn key



CScriptParticleManager

No Description Set


Global accessor variable: ParticleManager

函数名 函数原型 解释
CreateParticle(en) int CreateParticle(string particleName, int particleAttach, handle owningEntity) 创建一个新的粒子特效
CreateParticleForPlayer(en) int CreateParticleForPlayer(string particleName, int particleAttach, handle owningEntity, handle owningPlayer) 创建一个只对指定玩家播放的粒子特效
CreateParticleForTeam(en) int CreateParticleForTeam(string string_1, int int_2, handle handle_3, int int_4) 创建一个仅为某方队伍播放的粒子特效。
DestroyParticle(en) void DestroyParticle(int particleID, bool immediately) 清除粒子。
GetParticleReplacement(en) string GetParticleReplacement(string a, handle b) No Description Set
ReleaseParticleIndex(en) void ReleaseParticleIndex(int particleId) 施放指定粒子特效索引号
SetParticleAlwaysSimulate(en) void SetParticleAlwaysSimulate(int a) No Description Set
SetParticleControl(en) void SetParticleControl(int particleId, int controlIndex, Vector controlData) 设置控制粒子特效的控制点数据
SetParticleControlEnt(en) void SetParticleControlEnt(int a, int b, handle c, int d, string e, Vector f, bool g) No Description Set
SetParticleControlForward(en) void SetParticleControlForward(int int_1, int int_2, Vector Vector_3)(int nFXIndex, int nPoint, vForward) 设置粒子的前进运动
SetParticleControlOrientation(en) void SetParticleControlOrientation(int int_1, int int_2, Vector Vector_3, Vector Vector_4, Vector Vector_5)(int nFXIndex, int nPoint, vForward, vRight, vUp) 设置粒子的三向运动。

CScriptHeroList

No Description Set


Global accessor variable: HeroList

函数名 函数原型 解释
GetAllHeroes(en) table GetAllHeroes() 返回当前世界全部英雄
GetHero(en) handle GetHero(int heroId) 获取英雄列表中第N位英雄
GetHeroCount(en) int GetHeroCount() 返回当前世界英雄数目



CNativeOutputs

No Description Set

函数名 函数原型 解释
AddOutput(en) void AddOutput(string a, string b) 增加一个输出
Init(en) void Init(int a) 初始化输出



CEnvProjectedTexture

extends CBaseEntity

No Description Set

函数名 函数原型 解释
SetFarRange(en) void SetFarRange(float a) 设置光照最大距离
SetLinearAttenuation(en) void SetLinearAttenuation(float a) 设置光照线性淡化值
SetNearRange(en) void SetNearRange(float a) 设置光照最小距离
SetQuadraticAttenuation(en) void SetQuadraticAttenuation(float a) 设置光照二次项淡化值
SetVolumetrics(en) void SetVolumetrics(bool a, float b, float c, int d, float e) 开关体积光参数: bool bOn, float flIntensity, float flNoise, int nPlanes, float flPlaneOffset



CInfoData

No Description Set

函数名 函数原型 解释
QueryColor(en) Vector QueryColor(utlstringtoken a, Vector b) 查询该键值颜色数据
QueryFloat(en) float QueryFloat(utlstringtoken a, float b) 查询该键值浮点(float)数据
QueryInt(en) int QueryInt(utlstringtoken a, int b) 查询该键值整型(int)数据
QueryNumber(en) float QueryNumber(utlstringtoken a, float b) 查询该键值数值数据
QueryString(en) string QueryString(utlstringtoken a, string b) 查询该键值字符串(string)数据
QueryVector(en) Vector QueryVector(utlstringtoken a, Vector b) 查询该键值矢量(vector)数据



CPhysicsProp

No Description Set

函数名 函数原型 解释
DisableMotion(en) void DisableMotion() 禁止该元件运动
EnableMotion(en) void EnableMotion() 允许该元件运动



CDOTAGamerules

'


Global accessor variable: GameRules

函数名 函数原型 解释
AddMinimapDebugPoint(en) void AddMinimapDebugPoint(int int_1, Vector Vector_2, int int_3, int int_4, int int_5, int int_6, float float_7) 在小地图上增加一个点。
AddMinimapDebugPointForTeam(en) void AddMinimapDebugPointForTeam(int int_1, Vector Vector_2, int int_3, int int_4, int int_5, int int_6, float float_7, int int_8) 向某方队伍在小地图上增加一个点。
Defeated(en) void Defeated() 摧毁遗迹等
DidMatchSignoutTimeOut(en) bool DidMatchSignoutTimeOut() 当游戏结束,等待弹窗时为真
EnableCustomGameSetupAutoLaunch(en) void EnableCustomGameSetupAutoLaunch(bool bool_1) 启用 (true)或禁用 (false) 自定义游戏的自动设置。
FinishCustomGameSetup(en) void FinishCustomGameSetup() 提示自定义游戏的设置阶段已经完成,并应用到游戏中。
GetCustomGameDifficulty(en) int GetCustomGameDifficulty() 返回自定义游戏难度。
GetCustomGameDifficulty(en) int GetCustomGameDifficulty() 返回自定义游戏模式难度
GetDifficulty(en) int GetDifficulty() 返回游戏难度
GetDOTATime(en) float GetDOTATime(bool bool_1, bool bool_2)(b IncludePregameTime b IncludeNegativeTime) 返回Dota游戏内的时间。(是否包含赛前时间或负时间)。
GetDroppedItem(en) handle GetDroppedItem(int dropIndex) 获得第X个掉落物品
GetGameModeEntity(en) handle GetGameModeEntity() 设置游戏模式实体
GetGameSessionConfigValue(en) string GetGameSessionConfigValue(string string_1, string string_2) 从会话配置中获取字符串 (地图选项)。
GetGameTime(en) float GetGameTime() 返回游戏开始后经过的秒数,暂停时间不计算在内
GetMatchSignoutComplete(en) bool GetMatchSignoutComplete() 是否已经接受包含回报信息的弹窗
GetNianFightStartTime(en) float GetNianFightStartTime() 获得年兽大战开始时间
GetNianTotalDamageTaken(en) int GetNianTotalDamageTaken() 芳晓活动,获得年兽受到的总伤害
GetPlayerCustomGameAccountRecord(en) table GetPlayerCustomGameAccountRecord(int int_1)(Preview/Unreleased) Gets the player's custom game account record, as it looked at the start of this session
GetTimeOfDay (en) float GetTimeOfDay() 获取一天中的时间(游戏时间)
IsDaytime(en) bool IsDaytime() 是否是白天
IsGamePaused(en) bool IsGamePaused() 返回游戏是否被暂停了。
IsCheatMode(en) bool IsCheatMode() 检测房间是否被设置为允许作弊或 sv_cheats 1.
LockCustomGameSetupTeamAssignment(en) void LockCustomGameSetupTeamAssignment(bool bool_1) 锁定(true)或解锁(false)队伍分配.。如果队伍分配被锁定,玩家将不再能修改队伍。
MakeTeamLose(en) void MakeTeamLose(int team) 使指定队伍失败
NumDroppedItems(en) int NumDroppedItems() 返回当前掉落在地面的物品数量
PlayerHasCustomGameHostPrivileges(en) bool PlayerHasCustomGameHostPrivileges(handle handle_1) 返回玩家是否具有主机特权 (洗牌等)。
Playtesting_UpdateAddOnKeyValues(en) void Playtesting_UpdateAddOnKeyValues() 从磁盘数据中更新自定义英雄、单位、技能的键值
ResetDefeated(en) void ResetDefeated() 遗迹摧毁后重新开始
ResetToHeroSelection(en) void ResetToHeroSelection() 重新开始时选择英雄
SendCustomMessage(en) void SendCustomMessage(string message, int teamID, int unknown(1?)) 在左侧文本框显示一行文本,通常用来提示死亡、反补队友、买活等信息。使用严格HTML格式(>;br<;,>;u<;,>;font<;)
SendCustomMessageToTeam(en) void SendCustomMessageToTeam(string string_1, int int_2, int int_3, int int_4) 代表一个玩家向某个队伍发送信息。
SetCreepMinimapIconScale(en) void SetCreepMinimapIconScale(float scale) 在小地图上缩放中立生物图标
SetCustomGameAccountRecordSaveFunction(en) void SetCustomGameAccountRecordSaveFunction(handle handle_1, handle handle_2)(Preview/Unreleased) 向句柄设置一个回调来保存玩家的账户信息。 (回调传递了玩家的ID,并应该返回一个简单的table)。
SetCustomGameDifficulty(en) void SetCustomGameDifficulty(int a) 设置自定义游戏模式难度等级
SetCustomGameEndDelay(en) void SetCustomGameEndDelay(float delay) 设置游戏完全结束前的等待时间。
SetCustomGameSetupAutoLaunchDelay(en) void SetCustomGameSetupAutoLaunchDelay(float float_1) 设置自动开始前的等待时间。
SetCustomGameSetupRemainingTime(en) void SetCustomGameSetupRemainingTime(float float_1) 设置游戏的设置时间,0 = 立即开始 -1 = 等待直到设置完毕。
SetCustomGameSetupTimeout(en) void SetCustomGameSetupTimeout(float float_1) 设置设置(赛前)阶段的超时。 0 = 立即开始, -1 = 永远 (直到FinishCustomGameSetup 被调用)
SetCustomGameTeamMaxPlayers(en) void SetCustomGameTeamMaxPlayers(int int_1, int int_2) 在设置阶段,设置某方队伍是否还能被选择加入
SetCustomVictoryMessage(en) void SetCustomVictoryMessage(string string_1) 设置胜利信息。
SetCustomVictoryMessageDuration(en) void SetCustomVictoryMessageDuration(float duration) 设置自订胜利信息将会持续多长时间。
SetFirstBloodActive(en) void SetFirstBloodActive(bool a) 设置第一滴血是否已经产生
SetGameWinner(en) void SetGameWinner(int team) 使指定队伍胜利
SetGoldPerTick(en) void SetGoldPerTick(int a) 设置每个时间间隔获得的金币
SetGoldTickTime(en) void SetGoldTickTime(float a) 设置获得金币的时间周期
SetHeroMinimapIconScale(en) void SetHeroMinimapIconScale(int iconSize) 设置小地图英雄图标尺寸
SetHeroRespawnEnabled(en) void SetHeroRespawnEnabled(bool canRespawn) 设置是否使用默认英雄复活规则
SetHeroSelectionTime(en) void SetHeroSelectionTime(float time) 设置选择英雄的时间
SetHideKillMessageHeaders(en) void SetHideKillMessageHeaders(bool hide) 设置是否隐藏击杀提示。
SetNianFightStartTime(en) void SetNianFightStartTime(float a) 设置年兽大战开始时间
SetOverlayHealthBarUnit(en) void SetOverlayHealthBarUnit(handle unit, int style) 在前端蒙版生命条上显示单位生命值
SetPostGameTime(en) void SetPostGameTime(float time) 设置在结束游戏后服务器与玩家断线前的时间
SetPreGameTime(en) void SetPreGameTime(float time) 设置选择英雄与开始游戏之间的时间
SetRuneMinimapIconScale(en) void SetRuneMinimapIconScale(float scale) 缩放小地图神符图标
SetRuneSpawnTime(en) void SetRuneSpawnTime(float time) 设置神符刷新时间
SetSafeToLeave(en) void SetSafeToLeave(bool safeToLeave) 标记游戏可安全离开
SetSameHeroSelectionEnabled(en) void SetSameHeroSelectionEnabled(bool enabled) 允许选择重复英雄
SetStartingGold(en) void SetStartingGold(int int_1) 设置初始金钱。
SetTimeOfDay(en) void SetTimeOfDay(float time) 设置一天中的时间(游戏时间)
SetTreeRegrowTime(en) void SetTreeRegrowTime(float time) 设置树重新生长的时间(秒)
SetUseBaseGoldBountyOnHeroes(en) void SetUseBaseGoldBountyOnHeroes(bool a) 英雄将使用基础NPC规则来决定赏金,而不是DOTA指定规则
SetUseCustomHeroXPValues(en) void SetUseCustomHeroXPValues(bool a) 允许英雄提供指定数目的经验值(必须先设置)
SetUseUniversalShopMode(en) void SetUseUniversalShopMode(bool enabled) 为真时,所有物品当处于任意商店范围内时都能购买到,包括秘密商店物品
State_Get(en) <> State_Get() 获取当前游戏规则状态

CToneMapControllerComponent

No Description Set

函数名 函数原型 解释
GetBloomScale(en) float GetBloomScale() 获取该光泽贴图控制器(tonemap controller)的泛光缩放(bloomscale)
GetMaxExposure(en) float GetMaxExposure() 获取该光泽贴图控制器(tonemap controller)的最大曝光(max exposure)
GetMinExposure(en) float GetMinExposure() 获取该光泽贴图控制器(tonemap controller)的最小曝光(min exposure)
SetBloomScale(en) void SetBloomScale(float a) 设置该光泽贴图控制器(tonemap controller)的泛光缩放(bloomscale)
SetMaxExposure(en) void SetMaxExposure(float a) 设置该光泽贴图控制器(tonemap controller)的最大曝光(max exposure)
SetMinExposure(en) void SetMinExposure(float a) 设置该光泽贴图控制器(tonemap controller)的最小曝光(min exposure)



CDebugOverlayScriptHelper

No Description Set

函数名 函数原型 解释
Axis(en) void Axis(Vector a, Quaternion b, float c, bool d, float e) 绘制一个轴线。在世界空间中指定出发点和方向
Box(en) void Box(Vector a, Vector b, int c, int d, int e, int f, bool g, float h) 绘制一个世界空间轴向盒。在世界空间中指定边界
BoxAngles(en) void BoxAngles(Vector a, Vector b, Vector c, Quaternion d, int e, int f, int g, int h, bool i, float j) 在出发点绘制一个定向盒。在世界空间中指定边界
Capsule(en) void Capsule(Vector a, Quaternion b, float c, float d, int e, int f, int g, int h, bool i, float j) 绘制一个胶囊体。在世界空间中指定基部
Circle(en) void Circle(Vector a, Quaternion b, float c, int d, int e, int f, int g, bool h, float i) 绘制一个圆。在世界空间中指定中心
CircleScreenOriented(en) void CircleScreenOriented(Vector a, float b, int c, int d, int e, int f, bool g, float h) 绘制一个指向屏幕的圆。在世界空间中指定中心
Cone(en) void Cone(Vector a, Vector b, float c, float d, int e, int f, int g, int h, bool i, float j) 绘制一个线框锥形。在世界空间中指定结束点和方向
Cross(en) void Cross(Vector a, float b, int c, int d, int e, int f, bool g, float h) 绘制一个对齐屏幕的十字。在世界空间中指定出发点
Cross3D(en) void Cross3D(Vector a, float b, int c, int d, int e, int f, bool g, float h) 绘制一个对齐世界的十字。在世界空间中指定出发点
Cross3DOriented(en) void Cross3DOriented(Vector a, Quaternion b, float c, int d, int e, int f, int g, bool h, float i) 绘制一个指向的十字。在世界空间中指定出发点
DrawTickMarkedLine(en) void DrawTickMarkedLine(Vector a, Vector b, float c, int d, int e, int f, int g, int h, bool i, float j) 绘制一个短划线。在世界空间中指定结束点
EntityAttachments(en) void EntityAttachments(ehandle ehandle_1, float float_2, float float_3) 绘制实体附件
EntityAxis(en) void EntityAxis(ehandle a, float b, bool c, float d) 绘制实体源坐标轴
EntityBounds(en) void EntityBounds(ehandle a, int b, int c, int d, int e, bool f, float g) 绘制实体边界
EntitySkeleton(en) void EntitySkeleton(ehandle a, float b) 绘制实体骨架
EntityText(en) void EntityText(ehandle a, int b, string c, int d, int e, int f, int g, float h) 在实体上绘制文本
FilledRect2D(en) void FilledRect2D(Vector2D a, Vector2D b, int c, int d, int e, int f, float g) 绘制一个2D矩形填充的屏幕空间。按照像素对齐
HorzArrow(en) void HorzArrow(Vector a, Vector b, float c, int d, int e, int f, int g, bool h, float i) 绘制一个水平箭头。在世界空间中指定结束点
Line(en) void Line(Vector a, Vector b, int c, int d, int e, int f, bool g, float h) 绘制一个两点间连线
Line2D(en) void Line2D(Vector2D a, Vector2D b, int c, int d, int e, int f, float g) 绘制一个屏幕空间中亮点间连线
PopDebugOverlayScope(en) void PopDebugOverlayScope() 弹出蒙版分组用的标记,被标记的蒙版可被成批删除
PushAndClearDebugOverlayScope(en) void PushAndClearDebugOverlayScope(utlstringtoken a) 推入一个蒙版分组用的标记。删除所有使用该蒙版ID的蒙版
PushDebugOverlayScope(en) void PushDebugOverlayScope(utlstringtoken a) 推入一个蒙版分组用的标记。被标记的蒙版可被成批删除
RemoveAllInScope(en) void RemoveAllInScope(utlstringtoken a) 移除指定标记的全部蒙版,无视其生命周期
SolidCone(en) void SolidCone(Vector a, Vector b, float c, float d, int e, int f, int g, int h, bool i, float j) 绘制一个固体锥。在世界空间中指定出发点和方向
Sphere(en) void Sphere(Vector a, float b, int c, int d, int e, int f, bool g, float h) 绘制一个线框球体。在世界空间中指定中心
SweptBox(en) void SweptBox(Vector a, Vector b, Vector c, Vector d, Quaternion e, int f, int g, int h, int i, float j) 绘制一个扫描盒。在世界空间中指定结束点并在本地空间中指定边界
Text(en) void Text(Vector a, int b, string c, float d, int e, int f, int g, int h, float i) 绘制2D文本。在世界空间中指定出发点
Texture(en) void Texture(string a, Vector2D b, Vector2D c, int d, int e, int f, int g, Vector2D h, Vector2D i, float j) 绘制一个屏幕空间纹理。按照像素对齐
Triangle(en) void Triangle(Vector a, Vector b, Vector c, int d, int e, int f, int g, bool h, float i) 绘制一个填充三角形。在世界空间中指定顶部
UnitTestCycleOverlayRenderType(en) void UnitTestCycleOverlayRenderType() 转换蒙版混合类型, 用于单位测试
VectorText3D(en) void VectorText3D(Vector a, Quaternion b, string c, int d, int e, int f, int g, bool h, float i) 绘制3D文本。在世界空间中指定出发点和方向
VertArrow(en) void VertArrow(Vector a, Vector b, float c, int d, int e, int f, int g, bool h, float i) 绘制一个垂直箭头。在世界空间中指定结束点
YawArrow(en) void YawArrow(Vector a, float b, float c, float d, int e, int f, int g, int h, bool i, float j) 绘制一个指定偏航角的箭头。在世界空间中指定结束点



CBaseFlex

extends CBaseAnimating

Animated characters who have vertex flex capability (Hi hex6)

函数名 函数原型 解释
GetCurrentScene(en) handle GetCurrentScene() 返回最早激活的场景实体的实例(如果存在的话)
GetSceneByIndex(en) handle GetSceneByIndex(int a) 返回指定索引号的场景实体的实例



CSceneEntity

extends CBaseEntity

Choreographed scene which controls animation and/or dialog on one or more actors.

函数名 函数原型 解释
AddBroadcastTeamTarget(en) void AddBroadcastTeamTarget(int a) 在记分板列表上增加一个组(使用索引号)
Cancel(en) void Cancel() 取消场景重播
EstimateLength(en) float EstimateLength() 返回场景长度(秒)
FindCamera(en) handle FindCamera() 获取镜头
FindNamedEntity(en) handle FindNamedEntity(string a) 通过一个实体参照,比如!target,获取场景物体中的实际实体
IsPaused(en) bool IsPaused() 场景是否被暂停
IsPlayingBack(en) bool IsPlayingBack() 场景是否正播放
LoadSceneFromString(en) bool LoadSceneFromString(string a, string b) 输入虚拟场景名和VCD字符串,载入场景
RemoveBroadcastTeamTarget(en) void RemoveBroadcastTeamTarget(int a) 从记分板列表上移除一个组(使用索引号)
Start(en) void Start(handle a) 开始场景重播,参数为激活者实体(activatorEntity)



GridNav

A class that can communicate with the gridnav, useful for seeing if stuff should be able to move

函数名 函数原型 解释
CanFindPath(en) bool CanFindPath(Vector Vector_1, Vector Vector_2) 判断是否能从某个起始点移动到某个终点。(vStart, vEnd)
DestroyTreesAroundPoint(en) void DestroyTreesAroundPoint(Vector Vector_1, float float_2, bool bool_3) 砍掉区域内所有的树。(vPosition, flRadius, bFullCollision
FindPathLength(en) float FindPathLength(Vector Vector_1, Vector Vector_2) 找到两点间可通过的路径,并返回路径长度。如果寻路失败,将返回-1。 float (vStart, vEnd )
GetAllTreesAroundPoint(en) table GetAllTreesAroundPoint(Vector Vector_1, float float_2, bool bool_3) 以table形式返回附近所有的树木。 HSCRIPTS (vPosition, flRadius, bFullCollision).
GridPosToWorldCenterX(en) float GridPosToWorldCenterX(int a) 获取指定X索引号的世界中心X位置(网格到世界)
GridPosToWorldCenterY(en) float GridPosToWorldCenterY(int a) 获取指定Y索引号的世界中心Y位置(网格到世界)
IsBlocked(en) bool IsBlocked(Vector a) 检查给定位置是否被阻挡
IsNearbyTree(en) bool IsNearbyTree(Vector position, float radius, bool c)
IsTraversable(en) bool IsTraversable(Vector a) 检查给予维持是否可通过
RegrowAllTrees(en) void RegrowAllTrees()
WorldToGridPosX(en) int WorldToGridPosX(float a) 获取指定世界X位置的X索引(世界到网格)
WorldToGridPosY(en) int WorldToGridPosY(float a) 获取指定世界Y位置的Y索引(世界到网格)

Convars

No Description Set


Global accessor variable: ConVars

函数名 函数原型 解释
GetBool(en) table GetBool(string variableName) GetBool(name) : 将指定的控制台变量(convar)作为boolean返回.
GetCommandClient(en) handle GetCommandClient() GetCommandClient() : 返回输入该控制台指令的玩家
GetDOTACommandClient(en) handle GetDOTACommandClient() GetDOTACommandClient() : 返回输入该控制台智力的DOTA玩家
GetFloat(en) table GetFloat(string name) GetFloat(name) : 将指定的控制台变量(convar)作为float返回. 不存在时返回nil
GetInt(en) table GetInt(string a) GetInt(name) : 将指定的控制台变量(convar)作为int返回. 不存在时返回nil
GetStr(en) table GetStr(string variableName) GetStr(name) : 将指定的控制台变量(convar)作为string返回. 不存在时返回nil
RegisterCommand(en) void RegisterCommand(string variableName, handle function, string helpText, int flags) RegisterCommand(name, fn, helpString, flags) : 注册一个控制台指令.
RegisterConvar(en) void RegisterConvar(string name, string defaultValue, string helpText, int flags) RegisterConvar(name, defaultValue, helpString, flags): 注册一个新的控制台变量.
SetBool(en) void SetBool(string variableName, bool value) SetBool(name,val) : 将指定控制台变量(convar)设置为指定bool.
SetFloat(en) void SetFloat(string variableName, float value) SetFloat(name,val) : 将指定控制台变量(convar)设置为指定float.
SetInt(en) void SetInt(string a, int b) SetInt(name,val) : 将指定控制台变量(convar)设置为指定int.
SetStr(en) void SetStr(string a, string b) SetStr(name,val) : 将指定控制台变量(convar)设置为指定string.



Vector

Vector class


Global accessor variable: Vector(x,y,z)

函数名 函数原型 解释
__add(en) Vector __add(Vector a, Vector b) 重载+.矢量加运算
__div(en) Vector __div(Vector a, Vector b) 重载/.矢量除运算
__eq(en) bool __eq(Vector a, Vector b) 重载==.矢量比较运算
__len(en) float __len() 重载#返回矢量长度
__mul(en) Vector __mul(Vector a, Vector b) 重载*返回矢量乘运算
__sub(en) Vector __sub(Vector a, Vector b) 重载-.矢量减运算
__tostring(en) string __tostring() 重载..转换矢量为字符串
__unm(en) Vector __unm() 重载- operator
Cross(en) Vector Cross(Vector a, Vector b) 矢量叉积
Dot(en) float Dot(Vector a, Vector b) 矢量点积
Length(en) float Length() 矢量长度(模)
Length2D(en) float Length2D() 矢量XY平面上长度(模)
Normalized(en) Vector Normalized() 返回单位矢量



CDOTA_MapTree

extends CBaseEntity

A tree on the map

函数名 函数原型 解释
CutDown(en) void CutDown(int TeamNumberKnownTo ) 砍掉这棵树
CutDownRegrowAfter(en) void CutDownRegrowAfter(float RegrowAfter, int TeamNumberKnownTo ) 砍掉这棵树,一段时间后再生
GrowBack(en) void GrowBack() 再生一棵被砍掉的树
IsStanding(en) bool IsStanding() 如果树站立着返回true,如果被砍掉返回false

CDOTA_SimpleObstruction

extends CBaseEntity

An obstruction on the map that effects the gridnav

函数名 函数原型 解释
IsEnabled(en) bool IsEnabled() Returns whether the obstruction is currently active
SetEnabled(en) void SetEnabled(bool enabled, bool b) Enable or disable the obstruction

CDOTA_Unit_Courier

extends CDOTA_BaseNPC

信使类。

函数名 函数原型 解释
UpgradeToFlyingCourier(en) bool UpgradeToFlyingCourier() 升级为飞行信使。

CDOTA_Ability_DataDriven

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
ApplyDataDrivenModifier(en) handle ApplyDataDrivenModifier(handle hCaster, handle hTarget, string pszModifierName, handle hModifierTable) 获取单位的攻击力。
ApplyDataDrivenThinker(en) handle ApplyDataDrivenThinker(handle hCaster, Vector vLocation, string pszModifierName, handle hModifierTable) 在指定地点应用一个数据驱动thinker。

CBaseModelEntity

No Description Set

Global accessor variable: Unknown

Function Signature Description
SetLightGroup(en) void SetLightGroup(string pLightGroup) SetLightGroup( string ): 设置实体所属的光照组。
SetModel(en) void SetModel(string pModelName) 设置模型
SetRenderColor(en) void SetRenderColor(int r, int g, int b) SetRenderColor( r, g, b ): 设置实体的渲染颜色。
SetRenderMode(en) void SetRenderMode(int nMode) SetRenderMode( int ): 设置实体的渲染模式。
SetSize(en) void SetSize(Vector mins, Vector maxs) 设置尺寸。


CCustomGameEventManager

No Description Set

全局变量: CustomGameEventManager

Function Signature Description
RegisterListener(en) int RegisterListener(string string_1, handle handle_2) ( string EventName, func CallbackFunction ) - 监听指定自定义事件,注册一个回调函数,在指定事件触发时被调用。返回一个监听者ID用来在以后取消监听。
Send_ServerToAllClients(en) void Send_ServerToAllClients(string string_1, handle handle_2) ( string EventName, table EventData )
Send_ServerToPlayer(en) void Send_ServerToPlayer(handle handle_1, string string_2, handle handle_3) ( Entity Player, string EventName, table EventData )
Send_ServerToTeam(en) void Send_ServerToTeam(int int_1, string string_2, handle handle_3) ( int TeamNumber, string EventName, table EventData )
UnregisterListener(en) void UnregisterListener(int int_1) ( int ListnerID ) - 对指定的监听者取消监听。

CCustomNetTableManager

No Description Set

Global accessor variable: CustomNetTables

Function Signature Description
GetTableValue(en) handle GetTableValue(string string_1, string string_2) ( string TableName, string KeyName )
SetTableValue(en) bool SetTableValue(string string_1, string string_2, handle handle_3) ( string TableName, string KeyName, script_table Value )


CDOTATutorial

No description Set

Global accessor variable: Unknown

函数 函数原型 解释
AddBot(en) bool AddBot(string string_1, string string_2, string string_3, bool bool_4) 添加一个由电脑控制的机器人。
AddQuest(en) void AddQuest(string string_1, int int_2, string string_3, string string_4) 向任务日志中添加一个任务。
AddShopWhitelistItem(en) void AddShopWhitelistItem(string string_1) 向商店白名单中添加一个物品。
CompleteQuest(en) void CompleteQuest(string string_1) 完成一个任务。
CreateLocationTask(en) void CreateLocationTask(Vector Vector_1) 增加一个移动到指定地点的任务。
EnableCreepAggroViz(en) void EnableCreepAggroViz(bool bool_1) 当小兵对英雄产生仇恨时提醒玩家。
EnablePlayerOffscreenTip(en) void EnablePlayerOffscreenTip(bool bool_1) 启用提醒玩家找到其英雄的提示。
EnableTowerAggroViz(en) void EnableTowerAggroViz(bool bool_1) 当防御塔对英雄产生仇恨时提醒玩家。
FinishTutorial(en) void FinishTutorial() 结束教程。
ForceGameStart(en) void ForceGameStart() 强制开始游戏。
GetTimeFrozen(en) bool GetTimeFrozen() 返回时间是否停止。
IsItemInWhiteList(en) bool IsItemInWhiteList(string string_1) 返回物品是否在白名单中。
RemoveShopWhitelistItem(en) void RemoveShopWhitelistItem(string string_1) 从白名单中移除一个物品。
SelectHero(en) void SelectHero(string string_1) 为本地玩家选取一个英雄。
SelectPlayerTeam(en) void SelectPlayerTeam(string string_1) 为本地玩家选取一个队伍。
SetItemGuide(en) void SetItemGuide(string string_1) 设置当前的物品指南。
SetOrModifyPlayerGold(en) void SetOrModifyPlayerGold(int int_1, bool bool_2) 为教学中的玩家设置金钱数目(设置或修改), (int) GoldAmount, (bool) true=进行设置, false=进行修改。
SetQuickBuy(en) void SetQuickBuy(string string_1) 设置快速购买。
SetShopOpen(en) void SetShopOpen(bool bool_1) 设置打开/关闭商店。
SetTimeFrozen(en) void SetTimeFrozen(bool bool_1) 设置是否停止时间。
SetTutorialConvar(en) void SetTutorialConvar(string string_1, string string_2) Set a tutorial convar
SetTutorialUI(en) void SetTutorialUI(int int_1) 设置教学UI,以简化界面并突出一些元素。
SetWhiteListEnabled(en) void SetWhiteListEnabled(bool bool_1) 设置是否将商店物品加入白名单。
StartTutorialMode(en) void StartTutorialMode() 初始化教学模式。
UpgradePlayerAbility(en) void UpgradePlayerAbility(string string_1) 为本地英雄升级某个技能。

CDOTA_Ability_Lua

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
CastFilterResult(en) int CastFilterResult() 判断一个无目标的命令是否有效
CastFilterResultLocation(en) int CastFilterResultLocation(Vector vLocation) (Vector vLocation)判断一个作用于某个地点的命令是否有效
CastFilterResultTarget(en) int CastFilterResultTarget(handle hTarget) (HSCRIPT hTarget) 判断一个作用于某个单位的命令是否有效
GetAssociatedPrimaryAbilities(en) string GetAssociatedPrimaryAbilities() 获取相互关联的技能Returns abilities that are stolen simultaneously, or otherwise related in functionality.
GetAssociatedSecondaryAbilities(en) string GetAssociatedSecondaryAbilities() Returns other abilities that are stolen simultaneously, or otherwise related in functionality. Generally hidden abilities.
GetBehavior(en) int GetBehavior() 返回技能的施法动作类型
GetCastAnimation(en) int GetCastAnimation() 返回技能的施法动画
GetCastRange(en) int GetCastRange(Vector vLocation, handle hTarget) 返回技能的施法范围
GetChannelAnimation(en) int GetChannelAnimation() 返回技能的持续施法动画
GetChannelledManaCostPerSecond(en) int GetChannelledManaCostPerSecond(int iLevel) 返回当前等级下,技能持续施法时的每秒魔法消耗 (当前为-1)
GetChannelTime(en) float GetChannelTime() 返回技能的持续施法时间
GetConceptRecipientType(en) int GetConceptRecipientType() 返回该技能被释放时将听到语音的单位
GetCooldown(en) float GetCooldown(int iLevel) 返回技能的CD
GetCustomCastError(en) string GetCustomCastError() 返回一条失效的无目标命令的错误信息
GetCustomCastErrorLocation(en) string GetCustomCastErrorLocation(Vector vLocation) (Vector vLocation) 返回一条失效的作用于地点的命令的错误信息
GetCustomCastErrorTarget(en) string GetCustomCastErrorTarget(handle hTarget) (HSCRIPT hTarget) 返回一条失效的指向目标的命令的错误信息
GetGoldCost(en) int GetGoldCost(int iLevel) 返回某等级的金钱花费(当前为-1)
GetIntrinsicModifierName(en) string GetIntrinsicModifierName() 返回被该技能被动施加的Mordifier
GetManaCost(en) int GetManaCost(int iLevel) 返回某等级的魔法消耗(当前为-1)
GetPlaybackRateOverride(en) float GetPlaybackRateOverride() 返回施法动画的播放速度
IsHiddenAbilityCastable(en) bool IsHiddenAbilityCastable() 返回当该技能不在动作面板上时是否能使用
IsHiddenWhenStolen(en) bool IsHiddenWhenStolen() 返回该技能被技能窃取后是否是隐藏的
IsRefreshable(en) bool IsRefreshable() 返回该技能是否能被刷新球刷新
IsStealable(en) bool IsStealable() 返回该技能是否能被窃取
OnAbilityPhaseInterrupted(en) void OnAbilityPhaseInterrupted() 施法被打断
OnAbilityPhaseStart(en) bool OnAbilityPhaseStart() 施法开始(施法成功时返回True)
OnChannelFinish(en) void OnChannelFinish(bool bInterrupted) (bool bInterrupted) 持续施法完成
OnChannelThink(en) void OnChannelThink(float flInterval) (float flInterval) 持续施法开始
OnHeroCalculateStatBonus(en) void OnHeroCalculateStatBonus() 施法者(仅限英雄)升级,得到技能加点, 或 received a new stat bonus.
OnHeroDiedNearby(en) void OnHeroDiedNearby(handle unit, handle attacker, handle table) 一个英雄在附近死亡 (比如说骨灰盒的效果)时, 获取参数表
OnHeroLevelUp(en) void OnHeroLevelUp() 施法者升级
OnInventoryContentsChanged(en) void OnInventoryContentsChanged() 施法者物品库存发生变化
OnItemEquipped(en) void OnItemEquipped(handle hItem) ( HSCRIPT hItem ) 施法者装备了物品
OnOwnerDied(en) void OnOwnerDied() 施法者死亡
OnOwnerSpawned(en) void OnOwnerSpawned() 施法者第一次出生或重生
OnProjectileHit(en) bool OnProjectileHit(handle hTarget, Vector vLocation) (HSCRIPT hTarget, Vector vLocation) 投射物撞击到某目标或者到达指定位置 (目标不可用)
OnProjectileHit_ExtraData(en) bool OnProjectileHit_ExtraData(handle hTarget, Vector vLocation, handle table) (HSCRIPT hTarget, Vector vLocation, table kv) 投射物撞击到某目标或者到达指定位置 (目标不可用)
OnProjectileThink(en) void OnProjectileThink(Vector vLocation) (Vector vLocation) 投射物正在运动
OnProjectileThink_ExtraData(en) void OnProjectileThink_ExtraData(Vector vLocation, handle table) (Vector vLocation, table kv ) 投射物正在运动
OnSpellStart(en) void OnSpellStart() 施法前摇结束,技能效果开始
OnStolen(en) void OnStolen(handle hSourceAbility) ( HSCRIPT hAbility ) 当技能被窃取时,进行的某特殊行为
OnToggle(en) void OnToggle() Ability is toggled on/off. 技能被开启/关闭
OnUnStolen(en) void OnUnStolen() 当技能未被(成功)窃取时,进行的某特殊行为
OnUpgrade(en) void OnUpgrade() 技能升级
ProcsMagicStick(en) bool ProcsMagicStick() 返回该技能是否会增加周围单位的魔棒点数
SpeakTrigger(en) int SpeakTrigger() 返回所使用的语音类型

CDOTA_CustomUIManager

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
DynamicHud_Create(en) void DynamicHud_Create(int int_1, string string_2, string string_3, handle handle_4) 为某玩家建立一个新的自定义用户界面元素。 ( int PlayerID /*-1 means everyone*/, string ElementID /* should be unique */, string LayoutFileName, table DialogVariables /* can be nil */ )
DynamicHud_Destroy(en) void DynamicHud_Destroy(int int_1, string string_2) 删除一个自定义用户界面元素。 ( int PlayerID /*-1 means everyone*/, string ElementID )
DynamicHud_SetDialogVariables(en) void DynamicHud_SetDialogVariables(int int_1, string string_2, handle handle_3) 为已有的用户界面元素添加/修改一个会话变量。( int PlayerID /*-1 means everyone*/, string ElementID, table DialogVariables )
DynamicHud_SetVisible(en) void DynamicHud_SetVisible(int int_1, string string_2, bool bool_3) 切换已有的用户见面元素的可见性。 ( int PlayerID /*-1 means everyone*/, string ElementID, bool Visible )

CPropHMDAvatar

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
GetVRHand(en) handle GetVRHand(int nHandID) 根据ID获取VR

CPropVRHand

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
GetAttachment(en) handle GetAttachment() 获取这只手上的附件。
SetAttachment(en) void SetAttachment(handle hAttachment) 设置这只手上的附件。

CDOTA_Buff

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
AddParticle(en) void AddParticle(int i, bool bDestroyImmediately, bool bStatusEffect, int iPriority, bool bHeroEffect, bool bOverheadEffect)(index, bDestroyImmediately, bStatusEffect, priority, bHeroEffect, bOverheadEffect) 增加粒子。
DecrementStackCount(en) void DecrementStackCount() 将Mordifier的叠加层数-1
Destroy(en) void Destroy() 运行所有相关的移除函数来移除这个Mordifier。
ForceRefresh(en) void ForceRefresh() 运行所有相关的刷新函数,使Mordifier恢复到初始
GetAbility(en) handle GetAbility() 获取产生这个Mordifier的技能。
GetCaster(en) handle GetCaster() 获取产生这个Mordifier的单位。
GetClass(en) string GetClass() 获取这个Mordifier所属的类。
GetCreationTime(en) float GetCreationTime() 获取这个Mordifier的创建时间。
GetDieTime(en) float GetDieTime() 获取这个Mordifier的终止时间。
GetDuration(en) float GetDuration() 获取这个Mordifier的持续时间。
GetElapsedTime(en) float GetElapsedTime() 获取这个Mordifier的消失时间。
GetName(en) string GetName() 获取这个Mordifier的名称。
GetParent(en) handle GetParent() 获取这个Mordifier所继承的单位。
GetRemainingTime(en) float GetRemainingTime() 获取这个Mordifier的剩余时间。
GetStackCount(en) int GetStackCount() 获取这个Mordifier的叠加层数。
IncrementStackCount(en) void IncrementStackCount()Increase this modifier's stack count by 1. 使Mordifier的叠加层数+1。
SetDuration(en) void SetDuration(float flDuration, bool bInformClient)(flTime, bInformClients) 设置持续时间。
SetStackCount(en) void SetStackCount(int iCount) 设置叠加层数。
StartIntervalThink(en) void StartIntervalThink(float flInterval) 开始Mordifier的计时功能 (OnIntervalThink) ,根据给定的间隔 (float)。 值-1将会停止这个功能。

CDOTA_Modifier_Lua

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
AllowIllusionDuplicate(en) bool AllowIllusionDuplicate() 幻象是否继承这个Mordifier
DestroyOnExpire(en) bool DestroyOnExpire() Buff是否会在Mordifier到期时被移除
GetAttributes(en) int GetAttributes() 返回被应用到Mordifier上的属性类别
GetAuraEntityReject(en) bool GetAuraEntityReject(handle hEntity) 返回实体是否在某些条件下获得光环
GetAuraRadius(en) int GetAuraRadius() 返回光环半径
GetAuraSearchFlags(en) int GetAuraSearchFlags() 返回光环施加效果时的Flag
GetAuraSearchTeam(en) int GetAuraSearchTeam() 返回光环效果将施加的队伍
GetAuraSearchType(en) int GetAuraSearchType() 返回光环效果将施加的单位类型
GetEffectAttachType(en) int GetEffectAttachType() 通过GetEffectName获取将添加的粒子特效类型
GetEffectName(en) string GetEffectName() 返回Mordifier运行时所产生的粒子特效的名称
GetHeroEffectName(en) string GetHeroEffectName() 返回Mordifier运行时所产生的英雄粒子特效的名称
GetModifierAura(en) string GetModifierAura() 返回这个Mordifier将施加的二级Mordifier 名称(如果一级Mordifier是光环)
GetStatusEffectName(en) string GetStatusEffectName() 返回Mordifier运行时所产生的状态粒子特效的名称
GetTexture(en) string GetTexture() 返回Mordifier的图标
HeroEffectPriority(en) int HeroEffectPriority() 英雄特效的显示优先级 (更高的数字在Buff栏中被优先显示)
IsAura(en) bool IsAura() 这个Mordifier是否是光环
IsAuraActiveOnDeath(en) bool IsAuraActiveOnDeath() 返回携带单位死后其光环是否有效
IsDebuff(en) bool IsDebuff() 返回这个Mordifier是否是Debuff
IsHidden(en) bool IsHidden() 返回这个Mordifier是否在状态栏中显示
IsPurgable(en) bool IsPurgable() 返回这个Mordifier是否能被清除
IsPurgeException(en) bool IsPurgeException() 返回这个Mordifier是否能被强力驱散清除
IsStunDebuff(en) bool IsStunDebuff() 返回这个Mordifier是否是眩晕类Debuff
OnCreated(en) void OnCreated(handle table) 在Mordifier被创建时运行
OnDestroy(en) void OnDestroy() 在Mordifier清楚时运行
OnIntervalThink(en) void OnIntervalThink() 当计时器间隔开始时
OnRefresh(en) void OnRefresh(handle table) 当Mordifier被刷新时运行
RemoveOnDeath(en) bool RemoveOnDeath() 返回持有者死亡时Mordifier是否被移除
StatusEffectPriority(en) int StatusEffectPriority() 状态特效的显示优先级 (更高的数字在Buff栏中被优先显示)

CDOTA_Modifier_Lua_Horizontal_Motion

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
ApplyHorizontalMotionController(en) bool ApplyHorizontalMotionController() 启动水平运动控制器的特效。启动成功后返回True。
GetPriority(en) int GetPriority() 获取优先级。
OnHorizontalMotionInterrupted(en) void OnHorizontalMotionInterrupted() 当运动被打断时进行回调。
SetPriority(en) void SetPriority(int nMotionPriority) 设置优先级。
UpdateHorizontalMotion(en) void UpdateHorizontalMotion(handle me, float dt) 根据给定的间隔对NPC施加水平运动

CDOTA_Modifier_Lua_Motion_Both

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
ApplyHorizontalMotionController(en) bool ApplyHorizontalMotionController() 启动水平运动控制器的特效。启动成功后返回True。
ApplyVerticalMotionController(en) bool ApplyVerticalMotionController() 启动垂直运动控制器的特效。启动成功后返回True。
GetPriority(en) int GetPriority() 获取优先级。
OnHorizontalMotionInterrupted(en) void OnHorizontalMotionInterrupted() 当水平运动被打断时进行回调。
OnVerticalMotionInterrupted(en) void OnVerticalMotionInterrupted() 当竖直运动被打断时进行回调。
SetPriority(en) void SetPriority(int nMotionPriority) 设置优先级。
UpdateHorizontalMotion(en) void UpdateHorizontalMotion(handle me, float dt) 根据给定的间隔对NPC施加水平运动。
UpdateVerticalMotion(en) void UpdateVerticalMotion(handle me, float dt) 根据给定的间隔对NPC施加竖直运动。

CDOTA_Modifier_Lua_Vertical_Motion

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
ApplyVerticalMotionController(en) bool ApplyVerticalMotionController() 启动垂直运动控制器的特效。启动成功后返回True。
GetMotionPriority(en) int GetMotionPriority() 获取优先级。
OnVerticalMotionInterrupted(en) void OnVerticalMotionInterrupted() 当竖直运动被打断时进行回调
SetMotionPriority(en) void SetMotionPriority(int nMotionPriority) 设置优先级。
UpdateVerticalMotion(en) void UpdateVerticalMotion(handle me, float dt) 根据给定的间隔对NPC施加竖直运动。

CDOTA_Item_Lua

No Description Set

Global accessor variable: Unknown

函数 函数原型 解释
CastFilterResult(en) int CastFilterResult() 判断一个无目标的命令是否有效
CastFilterResultLocation(en) int CastFilterResultLocation(Vector vLocation) (Vector vLocation)判断一个作用于地点的命令是否有效
CastFilterResultTarget(en) int CastFilterResultTarget(handle hTarget) (HSCRIPT hTarget) 判断一个作用于目标的命令是否有效
GetAssociatedPrimaryAbilities(en) string GetAssociatedPrimaryAbilities() Returns abilities that are stolen simultaneously, or otherwise related in functionality.
GetAssociatedSecondaryAbilities(en) string GetAssociatedSecondaryAbilities() Returns other abilities that are stolen simultaneously, or otherwise related in functionality. Generally hidden abilities.
GetBehavior(en) int GetBehavior() 返回技能的施法动作类型
GetCastRange(en) int GetCastRange(Vector vLocation, handle hTarget) 返回技能的施法范围
GetChannelledManaCostPerSecond(en) int GetChannelledManaCostPerSecond(int iLevel) 返回当前等级下,技能持续施法时的每秒魔法消耗 (当前为-1)
GetChannelTime(en) float GetChannelTime() 返回技能的持续施法时间
GetConceptRecipientType(en) int GetConceptRecipientType() 返回该技能被释放时将听到语音的单位
GetCooldown(en) float GetCooldown(int iLevel) 返回技能的CD
GetCustomCastError(en) string GetCustomCastError() 返回一条失效的无目标命令的错误信息
GetCustomCastErrorLocation(en) string GetCustomCastErrorLocation(Vector vLocation) (Vector vLocation) 返回一条失效的作用与地点的命令的错误信息
GetCustomCastErrorTarget(en) string GetCustomCastErrorTarget(handle hTarget) (HSCRIPT hTarget) 返回一条失效的指向目标的命令的错误信息
GetGoldCost(en) int GetGoldCost(int iLevel) 返回某等级的金钱花费(当前为-1)
GetIntrinsicModifierName(en) string GetIntrinsicModifierName() 返回被该技能被动地施加的Mordifier
GetManaCost(en) int GetManaCost(int iLevel) 返回某等级的魔法消耗(当前为-1)
GetPlaybackRateOverride(en) float GetPlaybackRateOverride() 返回施法动画的播放速度
IsHiddenAbilityCastable(en) bool IsHiddenAbilityCastable() 返回当该技能不在动作面板上时是否能使用
IsHiddenWhenStolen(en) bool IsHiddenWhenStolen() 返回该技能被技能窃取后是否是隐藏的
IsRefreshable(en) bool IsRefreshable() 返回该技能是否能被刷新球刷新
IsStealable(en) bool IsStealable() 返回该技能是否能被窃取
OnAbilityPhaseInterrupted(en) void OnAbilityPhaseInterrupted() 施法被打断
OnAbilityPhaseStart(en) bool OnAbilityPhaseStart() 施法开始(施法成功时返回True)
OnChannelFinish(en) void OnChannelFinish(bool bInterrupted) (bool bInterrupted) 持续施法完成
OnChannelThink(en) void OnChannelThink(float flInterval) (float flInterval)持续施法开始
OnHeroCalculateStatBonus(en) void OnHeroCalculateStatBonus() Caster (hero only) gained a level, skilled an ability, or received a new stat bonus.
OnHeroDiedNearby(en) void OnHeroDiedNearby(handle unit, handle attacker, handle table) 一个英雄在附近死亡 (比如说骨灰盒的效果)时, 获取参数表
OnHeroLevelUp(en) void OnHeroLevelUp() 施法者升级
OnInventoryContentsChanged(en) void OnInventoryContentsChanged() 施法者物品库存发生变化
OnItemEquipped(en) void OnItemEquipped(handle hItem) ( HSCRIPT hItem ) 施法者装备了物品
OnOwnerDied(en) void OnOwnerDied() 施法者死亡
OnOwnerSpawned(en) void OnOwnerSpawned() 施法者第一次出生或重生
OnProjectileHit(en) bool OnProjectileHit(handle hTarget, Vector vLocation) (HSCRIPT hTarget, Vector vLocation) 投射物撞击到某目标或者到达指定位置 (目标不可用)
OnProjectileThink(en) void OnProjectileThink(Vector vLocation) (Vector vLocation) 投射物正在运动
OnSpellStart(en) void OnSpellStart() 施法前摇结束,技能效果开始
OnStolen(en) void OnStolen(handle hSourceAbility) ( HSCRIPT hAbility ) 当技能被窃取时,进行的某特殊行为
OnToggle(en) void OnToggle() 技能被开启/关闭
OnUnStolen(en) void OnUnStolen() 当技能未被窃取时,进行的某特殊行为
OnUpgrade(en) void OnUpgrade() 技能升级
ProcsMagicStick(en) bool ProcsMagicStick() 返回该技能是否会增加周围单位的魔棒点数
SpeakTrigger(en) int SpeakTrigger() 返回所使用的语音类型