PDA

View Full Version : [KT] Hàm script tăng độ thân mật ?



djhtpro9x
06-03-14, 10:40 AM
Như tiêu đề ạ! Tức là mình muốn tăng độ thân mật của 2 nhân vật lên 1 phát cấp cuối luôn mà ko cần phải pt đi làm gì cả! Bác nào biết hàm này share mình để mình add vào newplayergift.lua nhé! :)

__Jie__
06-03-14, 12:07 PM
self:AddFriendFavor(pPlayer, tbPlayList, 10); -- 添加亲密度function BaiHuTang:AddFriendFavor(pSelf, tbPlayerList, nFavor)
if (0 == pSelf.nTeamId) then
return;
end
for _, pPlayer in ipairs(tbPlayerList) do
if (pPlayer.nId ~= pSelf.nId and
pPlayer.nTeamId == pSelf.nTeamId and
pSelf.IsFriendRelation(pPlayer.szName) == 1) then
Relation:AddFriendFavor(pSelf.szName, pPlayer.szName, nFavor);
pSelf.Msg(string.format("Bạn và <color=yellow>%s<color> độ thân mật tăng thêm %d điểm.", pPlayer.szName, nFavor * 2));
end
end
end
theo hàm BHD mà làm :D 10 chính là điểm thân mật .:-"

djhtpro9x
06-03-14, 05:05 PM
tks bạn! Để mình thử! :). Add thẳng vào newplayergift.lua à bạn?
Nhưng cụt lủn ko đầu ko đuôi thế này mình ko biết add thế nào! ~~
Mình vừa add thử xong, sai tùm lum!