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
print "LevelUpAward Loading" AWARD = {{60037,10,1,"不朽智慧药剂"},{60037,20,1,"不朽智慧药剂"},{60037,30,1,"不朽智慧药剂"},{60037,40,1,"不朽智慧药剂"},{60037,50,1,"不朽智慧药剂"},{60037,60,1,"不朽智慧药剂"},{60037,70,1,"不朽智慧药剂"},{60037,80,1,"不朽智慧药剂"} }; local function LevelUpAward (event, player, oldLevel) local nowLevel = player:GetLevel()--得到当前等级 for _,v in pairs (AWARD) do if (nowLevel == v[2]) then player:AddItem(v[1], v[3]); local ItemName = v[4]; player:SendBroadcastMessage("恭喜你提升到"..nowLevel.."级,获得系统奖励["..ItemName.."]"..v[3].."个。") SendWorldMessage("|cffff0000[系统公告]|r|cffcc00cc恭喜玩家|r|Hplayer:"..player:GetName().."|h|cff3333ff["..player:GetName().."]|h|r|cffcc00cc提升到"..nowLevel.."级,获得系统奖励["..ItemName.."]"..v[3].."个。|r") end end end RegisterPlayerEvent(13, LevelUpAward)