• QQ21031394

    工作时间

    周一至周五:9:30-18:30

    周末及节日:根据情况调休

  • 手机版二维码

    随时手机查素材

  • 扫描二维码

    加入官方QQ群

站长推荐
提百万 联盟管理员
  • 未知地域
  • 内测小天使

    内测期间为论坛做出突出贡献的会员
  • 优秀学员勋章

    通过近期表现由站长颁发
  • 优秀新人勋章

    通过近期表现由站长颁发
  • 高级学员勋章

    通过近期表现由站长颁发
  • 特级学员勋章

    通过近期表现由站长颁发
  • 天工合约会员

    拥有浏览和下载天工精品模型区权限
  • 3644发帖数
  • 1969主题数
  • 0关注数
  • 148粉丝

JASS语言变量查询

[复制链接]
提百万 发表于 2018-9-6 19:32:17 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题
提莫作坊QQ群:提莫作坊www.tbwlm.cn

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
WE变量命名规范
 
前缀
缩写
作用域
实际前缀
说明
(无)
local
(无)
局部变量。注意局部变量与全局变量同名时会产生一些莫名其妙的错误
(无)
global
udg_
临时变量。只要不用wait,脚本不会同时执行的,所以一般情况下用这种变量
g
global
udg_g_
全局变量(global/game)。如:g_EnemyTypeArr
s
global
udg_s_{函数}_
静态变量(static/shared)。某些函数需要静态变量
a
global
udg_a_{技能}_
触发器技能的全局性变量。如:a_CLZ_fDamage
后缀
缩写
说明
(无)
普通变量(非数组)
Arr
数组
变量类型前缀
缩写
WE变量类型
JASS变量类型
JASS类型基类
类型说明
释放(GUI)
释放(Blizzard.j)
释放(common.j)
i
Integer
integer
整型
Automatic
Automatic
Automatic
f
Real
real
实数型
Automatic
Automatic
Automatic
b
Boolean
boolean
布尔型
Automatic
Automatic
Automatic
s
String
string
字符串型
Automatic
Automatic
Automatic
h
Handle
handle
句柄
pfn
Function
code
程序代码(函数指针)
icAbi
Ability
*abilcode
integer
技能(代码)
Automatic
Automatic
Automatic
icBff
Buff
*buffcode
integer
魔法效果(代码)
Automatic
Automatic
Automatic
icDst
Destructible-Type
*destructablecode
integer
可破坏物-类型(代码)
Automatic
Automatic
Automatic
icImg
Image  Type
*imagetype
integer
图像类型(代码)
Automatic
Automatic
Automatic
icItm
Item-Type
*itemcode
integer
物品-类型(代码)
Automatic
Automatic
Automatic
scLig
Lightning  Type
*lightningtype
string
闪电类型(代码)
Automatic
Automatic
Automatic
icOdr
Order
*ordercode
integer
命令(代码)
Automatic
Automatic
Automatic
icTch
Tech-Type
*techcode
integer
科技-类型(代码)
Automatic
Automatic
Automatic
icTsp
Terrain  Shape
*terrainshape
integer
地形形状(代码)
Automatic
Automatic
Automatic
icTrn
Terrain  Type
*terraintype
integer
地形类型(代码)
Automatic
Automatic
Automatic
icUbs
Ubersplat  Type
*ubersplattype
integer
纹理类型(代码)
Automatic
Automatic
Automatic
icUnt
Unit-Type
*unitcode
integer
单位-类型(代码)
Automatic
Automatic
Automatic
evt
Event
event
handle
事件
plr
Player
player
handle
玩家
wgt
widget
handle
有血槽物体
unt
Unit
unit
widget
单位
Unit  - Remove
RemoveUnit
dst
Destructible
destructable
widget
可破坏物
Destructible  - Remove
RemoveDestructable
itm
Item
item
widget
物品
Item  - Remove
RemoveItem
abi
ability
handle
技能
bff
buff
ability
魔法效果
pgp
Player  Group
force
handle
势力(玩家组)
*Player  Group - Clear
DestroyForce
ugp
Unit  Group
group
handle
单位组
*Unit  Group - Clear
DestoryGroup
tgr
Trigger
trigger
handle
触发器
*Trigger  - Turn Off
DestroyTrigger
tcd
Trigger  Condition
triggercondition
handle
触发器条件
TriggerRemoveCondition
tac
Trigger  Action
triggeraction
handle
触发器动作
TriggerRemoveAction
tmr
Timer
timer
handle
计时器
*Countdown  Timer - Pause Timer
DestroyTimerBJ
DestroyTimer
pt
Point
location
handle
RemoveLocation
rgn
region
handle
区域(不规则几何区域)
RemoveRegion
rct
Region
rect
handle
地区
RemoveRect
bex
Boolean  Expression
boolexpr
handle
布尔表达式
DestroyBoolExpr
snd
Sound
sound
handle
声音
Sound  - Destroy
KillSoundWhenDoneBJ
KillSoundWhenDone
cfn
conditionfunc
boolexpr
条件函数
DestroyCondition
ffn
filterfunc
boolexpr
过滤函数
DestroyFilter
upl
unitpool
handle
单位池
DestroyUnitPool
ipl
itempool
handle
物品池
DestroyItemPool
rce
Race
race
handle
种族
alt
Alliance  Type
alliancetype
handle
盟友类型
rcp
racepreference
handle
种族优选
gms
gamestate
handle
游戏状态
gsi
igamestate
gamestate
游戏状态(i)
gsf
fgamestate
gamestate
游戏状态(f)
pst
Player  Property
playerstate
handle
玩家属性
pso
Player  Score
playerscore
handle
玩家得分
pgr
Player  Game Result
playergameresult
handle
玩家游戏结果
ust
Unit  Property
unitstate
handle
单位属性
idf
Aidifficulty
aidifficulty
handle
对战AI难度
eid
eventid
handle
事件ID
gev
Game  Event
gameevent
eventid
游戏事件
pev
playerevent
eventid
玩家事件
pue
Player  Unit Event
playerunitevent
eventid
玩家单位事件
uev
Unit  Event
unitevent
eventid
单位事件
lop
Limit  Operation
limitop
eventid
判断算符
wge
widgetevent
eventid
有血槽物体事件
dle
dialogevent
eventid
对话框事件
utp
Unit  Classification
unittype
handle
单位类型
gsp
Game  Speed
gamespeed
handle
游戏速度
gdf
Game  Difficulty
gamedifficulty
handle
游戏难度
gtp
gametype
handle
游戏类型
mfg
Map  Flag
mapflag
handle
地图标记
mvi
mapvisibility
handle
地图可见性
mst
mapsetting
handle
地图设置
mds
Map  Density
mapdensity
handle
地图密度
mcn
Player  Controller
mapcontrol
handle
玩家控制者
pss
Player  Slot Status
playerslotstate
handle
玩家槽状态
vgp
Volume  Channel
volumegroup
handle
音量频道
cfl
Camera  Field
camerafield
handle
镜头区域
csp
Camera  Object
camerasetup
handle
镜头物体
pcr
Player  Color
playercolor
handle
玩家颜色
slc
placement
handle
起始位置
slp
startlocprio
handle
起始位置优先权
rcn
Animation  Rarity
raritycontrol
handle
动画珍品
bmd
Blending  Method
blendmode
handle
合成方式
tmf
texmapflags
handle
地图涂层标志
eff
Special  Effect
effect
handle
特效
Special  Effect - Destroy
DestroyEffectBJ
DestroyEffect
etp
Effect  Type
effecttype
handle
效果类型
wef
Weather  Effect
weathereffect
handle
气候效果
Environment  - Remove Weather Effect
RemoveWeatherEffectBJ
RemoveWeatherEffect
tdf
Terrain  Deformation
terraindeformation
handle
地形变形
Environment  - Stop Terrain Deformation
TerrainDeformationStopBJ
TerrainDeformStop
vst
Visibility  State
fogstate
handle
可见状态
vmd
Visibility  Modifier
fogmodifier
handle
可见修改器
Visibility  Modifier - Destroy Visibility Modifier
DestroyFogModifier
dlg
Dialog
dialog
handle
对话框
*Dialog  - Clear
DialogDestroy
dbt
Dialog  Button
button
handle
对话框按钮
qst
Quest
quest
handle
任务
Quest  - Destroy
DestroyQuest
qre
Quest  Requirement
questitem
handle
任务要求
dcd
Defeat  Condition
defeatcondition
handle
失败条件
DestroyDefeatConditionBJ
DestroyDefeatCondition
twd
Timer  Window
timerdialog
handle
计时器窗口
Countdown  Timer - Destroy Timer Window
DestroyTimerDialogBJ
DestroyTimerDialog
lbd
Leaderboard
leaderboard
handle
排行榜
Leaderboard  - Destroy
DestroyLeaderboardBJ
DestroyLeaderboard
mbd
Multiboard
multiboard
handle
多面板
Multiboard  - Destroy
DestroyMultiboardBJ
DestroyMultiboard
mbi
multiboarditem
handle
多面板项目
tck
trackable
handle
可跟踪
gch
Game  Cache
gamecache
handle
游戏缓存
*Game  Cache - Clear Game Cache
*FlushGameCache
ver
version
handle
版本
itp
Item  Class
itemtype
handle
物品类型
ttg
Floating  Text
texttag
handle
漂浮文字
Floating  Text - Destroy
DestroyTextTagBJ
DestroyTextTag
atp
Attack  Type
attacktype
handle
攻击类型
dtp
Damage  Type
damagetype
handle
伤害类型
wtp
Weapon  Type
weapontype
handle
武器类型
stp
Sound  Type
soundtype
handle
声音类型
lig
Lightning
lightning
handle
闪电
Lightning  - Destroy Lightning Effect
DestroyLightning
ptp
Pathing  Type
pathingtype
handle
移动类型(决定单位是否能位于某种地形上)
img
Image
image
handle
图像
Image  - Destroy
DestroyImage
usp
Ubersplat
ubersplat
handle
纹理
Ubersplat  - Destroy
DestroyUbersplat
懒得上论坛看这个的可以下载下方的excel文档

游客,如果您要查看本帖隐藏内容请回复

楼主热帖
免责条款:本站仅提供学习的平台,所有资料均来自于网络,版权归原创者所有!本站不提供任何保证,并不承担任何法律责任,如果对您的版权或者利益造成损害,请提供相应的资质证明,我们将于3个工作日内予以删除。

本网站所收集的部分公开资料来源于互联网,转载的目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。本站部分作品是由网友自主投稿和发布、编辑整理上传,对此类作品本站仅提供交流平台,不为其版权负责。如果您发现网站上有侵犯您的知识产权的作品,请与我们取得联系,我们会及时修改或删除。

本网站所提供的信息,只供参考之用。本网站不保证信息的准确性、有效性、及时性和完整性。本网站及其雇员一概毋须以任何方式就任何信息传递或传送的失误、不准确或错误,对用户或任何其他人士负任何直接或间接责任。在法律允许的范围内,本网站在此声明,不承担用户或任何人士就使用或未能使用本网站所提供的信息或任何链接所引致的任何直接、间接、附带、从属、特殊、惩罚性或惩戒性的损害赔偿。

精彩评论42

jun5550800 发表于 2018-9-7 01:38:31 | 显示全部楼层
12315646656465
参与人数 1蓝钻 -30 收起 理由
提百万 -30 请不要纯数字 纯英文 纯表情等回复无意义.

查看全部评分总评分 : 蓝钻 -30

流风浅雨 发表于 2018-9-7 10:18:23 | 显示全部楼层
以收藏
Ad.青衫 发表于 2018-10-1 14:06:24 | 显示全部楼层
下载文档,Ctrl+F可以搜索自己需要的。
气息 发表于 2019-3-27 13:56:14 | 显示全部楼层
支持文档
昵称68 发表于 2019-3-28 04:32:36 | 显示全部楼层
感谢大佬分享,提百万联盟真好~!
潇潇哥 发表于 2019-6-11 00:35:48 | 显示全部楼层
支持支持!!
流行小炮 发表于 2019-6-16 00:15:37 | 显示全部楼层
以收藏
zx464076738 发表于 2019-6-16 12:35:38 | 显示全部楼层

楼主太厉害了!楼主,I*老*虎*U!我觉得提百万联盟真是个好地方!
cca 发表于 2019-8-8 14:21:36 | 显示全部楼层

这东西我收了!谢谢楼主!提百万联盟真好!

强调下版规的规定,如有恶意灌水从重处罚:
=====发表主题规则=======
1.主题内容请一定要附带预览图片,谢谢;
2.搬运来的东西请尽量不要卖钱!;
3.发帖有任何疑问请联系QQ21031394;
=====发表回复规则=======
1.禁止直接复制标题内容的;
2.禁止纯数字或者纯字母的;
3.禁止乱打一通文不对题;
4.禁止屠版和刷分行为;
第一次扣分处理,第二次扣分+警告,警告三次禁言三天,绝不手软,情况严重的直接封号,请大家珍惜自己的账号!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

猜你喜欢
天工维度唯一QQ群
786014245

欢迎进群交流,入群答案:编辑器

  • 官方在线客服

    QQ客服:小雪

    点击交谈

    QQ客服:砂糖

    点击交谈

    团队老大:荀公子

    商务合作
  • 上海市静安区共和新路4718号宏慧新汇园6号楼603室

  • 手机扫码查看手机版

    手机查找资源更方便

  • 扫一扫关注官方微信

    加入官方QQ群

Powered by 天天RPG&DZX3.4 ©2020-2021 Comsenz Inc.提百万设计( 沪ICP备18032615号-1 )营业执照