Ayase 's Wiki
database
auth
account.md
game_build_list.md
characters
characters_extend.md
character_challenge_complete_info.md
character_equipsoul_system.md
character_itemexinfo.md
character_npcbot.md
character_npcbot_group.md
character_npcbot_script.md
character_states.md
custom_reforging.md
custom_transmogrification.md
custom_transmogrification_sets.md
instance.md
world
auctionhousebot.md
ayasecore_challengesystem_complete_setting.md
ayasecore_challengesystem_creature_auras_setting.md
ayasecore_challengesystem_loot_setting.md
ayasecore_challengesystem_precondition_setting.md
ayasecore_challengesystem_setting.md
ayasecore_challengesystem_spellpool.md
ayasecore_charactersFake.md
ayasecore_equipsoul_material_setting.md
ayasecore_equipsoul_setting.md
ayasecore_handleSqlString.md
ayasecore_LevelUpSetting.md
ayasecore_npcbot_equip_template.md
ayasecore_peak_level_setting.md
ayasecore_QuestionSystem.md
ayasecore_statesSetting.md
ayasecore_teleportSetting.md
ayasecore_TitleAuraSystem.md
creature.md
creature_template_outfits.md
item_template_custom.md
item_up.md
_ayasecore_config.md
dbc
chartitles.dbc.md
extend scripts
赌博系统.lua
多功能炉石.lua
荣誉系统.lua
杀BOSS世界公告系统系统.lua
升级到自动奖励系统.lua
玩家上线提示系统.lua
function
challengeModeSystem.md
comment.md
db.md
sendPatches.md
img
1.png
2.png
BaiduShurufa_2018-12-4_22-18-31.jpg
BaiduShurufa_2018-12-4_22-20-39.jpg
BaiduShurufa_2018-12-4_22-32-34.jpg
一些说明
ahbot文档[英文原版].txt
ike3版的说明.txt
Markdown 语法.md
关于注册帐号.jpg
关于装备合成.txt
启动器设置.png
index.md
/wiki
extend scripts
荣誉系统.lua
--[[杀有经验的怪会得到15点荣誉值和竞技场点数 ]]-- print(">>Script: AddRongYu.") local itemID=600000 local itemcount=1 local function AddRongYu(event, killer, killed) local honornum = killer:GetHonorPoints() local arenanum = killer:GetArenaPoints() if(killer:IsHonorOrXPTarget(killed)) then killer:AddItem(itemID, itemcount) killer:SetHonorPoints(honornum + 2) killer:SetArenaPoints(arenanum + 1) killer:SendBroadcastMessage("获得1点荣誉值。") end end RegisterPlayerEvent(7,AddRongYu)