stoneage8.5/服务器端lua文件/ablua/item/chartitle.lua

39 lines
1.2 KiB
Lua
Raw Normal View History

2020-06-22 17:49:02 +08:00
function titleuse(itemindex, charaindex, toindex, haveitemindex)
local id = other.atoi(item.getChar(itemindex, "<EFBFBD>ֶ<EFBFBD>"))
if GetCharNewTitleMode(charaindex,id -1)== 1 then
char.TalkToCli(charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD>иóƺţ<EFBFBD>", "<EFBFBD><EFBFBD>ɫ")
return
end
local titlename = item.getChar(itemindex,"<EFBFBD><EFBFBD>ʾ<EFBFBD><EFBFBD>")
char.DelItem(charaindex, haveitemindex)
char.setCharNewTitleMode(charaindex,id -1)
-- char.setInt(charaindex, "<22>ƺ<EFBFBD>״̬2", 0)
--- char.setInt(charaindex, "<22>ƺ<EFBFBD>״̬3", 0)
char.TalkToCli(charaindex, -1, "<EFBFBD><EFBFBD>ϲ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>³ƺ<EFBFBD>"..titlename.."<EFBFBD><EFBFBD>", "<EFBFBD><EFBFBD>ɫ")
char.talkToServer(-1, "[<5B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]<5D><>ϲ<EFBFBD><CFB2><EFBFBD><EFBFBD> " .. char.getChar(charaindex, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>") .. " <20><><EFBFBD><EFBFBD>"..titlename.."<EFBFBD>ƺ<EFBFBD>", "<EFBFBD><EFBFBD>ɫ")
local param = {charaindex}
other.CallFunction("TitleListSend", "data/ablua/freechartitle.lua", param)
end
function GetCharNewTitleMode(charaindex,id)
if id< 32 then
if other.DataAndData(char.getInt(charaindex,"<EFBFBD>ƺ<EFBFBD>״̬1"),id)~= 0 then
return 1
end
elseif id< 64 then
if other.DataAndData(char.getInt(charaindex,"<EFBFBD>ƺ<EFBFBD>״̬2"),id-32)~= 0 then
return 1
end
elseif id< 96 then
if other.DataAndData(char.getInt(charaindex,"<EFBFBD>ƺ<EFBFBD>״̬3"),id-64)~= 0 then
return 1
end
end
return 0
end
function main()
item.addLUAListFunction( "ITEM_TITLE", "titleuse", "")
end