Hàm add EXP
- Code:
me.AddExp(số exp muốn add);
- Code:
Dialog:Say("Viết câu cần hiện lên ở đây");
- Code:
me.Msg("Viết câu cần hiện lên ở đây");
- Code:
local szMsg = string.format("Viết câu cần hiện lên ở đây");
KDialog.NewsMsg(1, Env.NEWSMSG_COUNT, szMsg);
- Code:
me.AddItem(Genre,DetailType,ParticularType,Level);
hoặc
me.AddItem(Genre,DetailType,ParticularType,Level,S eries);
Đối với đồ có thể cường hóa : me.AddItem(Genre,DetailType,ParticularType,Level,S eries,Cấp Cường Hóa);
Thông số vật phẩm các bạn xem trong : setting\item\001\other
Thông số trang bị các bạn xem trong :
setting\item\001\equip
setting\item\001\extern\change
- Code:
local nCount1 = me.GetItemCountInBags(18,1,1,9); <-- Khai thông số item tại đây
me.Msg("Trong túi của bạn có "..nCount1.." cái vật phẩm nCount1");
- Code:
if me.CountFreeBagCell() < 10 then
me.Msg("Túi của bạn đã đầy, cần ít nhất 10 ô trống.");
return 0;
end
- Code:
local tbItemId2 = {18,1,1,10,0,1}; -- Khai báo thông số item tại đây
Task:DelItem(me, tbItemId2, 1); -- Xóa 1 item tbItemId2
- Code:
local i = 1
while i<=500 do -- Số lượng item cần add ở đây là 500
me.AddItem(18,1,25151,1); -- Khai thông số item tại đây
i=i+1
end
- Code:
DoScript("\\script\\npc\\tuiguangyuan.lua"); -- Ở đây load file tuiguangyuan.lua nằm trong scipt\npc các bạn có thể chỉnh lại tùy ý
- Code:
local nMapId, nPosX, nPosY = me.GetWorldPos();
KNpc.Add2(ID NPC, Cấp, Hệ, nMapId, nPosX, nPosY)
me.Msg(string.format("Đã gọi Boss tại map số %d tọa độ %d/%d",nMapId,nPosX/8,nPosY/16));
- Code:
local nMapId, nPosX, nPosY = me.GetWorldPos();
local sms = string.format(" Tọa độ đang đứng là:<color=yellow> %d <color>-<color=green> %d <color>",nPosX*32, nPosY*32);
Dialog:Say(sms);
- Code:
local nMapId, nPosX, nPosY = me.GetWorldPos();
KNpc.Add2(ID NPC, Cấp, Hệ, nMapId, nPosX, nPosY).szName= "Thích tên gì đặt vào đây"
Last edited by phongbang2 on 28/11/13, 12:52 am; edited 1 time in total