检测宝宝数量

if This_Player.GetSlaveCount('') < 2 then

给人物增加经验倍数

This_Player.MultiTempExpRate := 2; 2=2倍,是几倍就等于几

检测人物性别给予物品(例如:衣服,性别检测:0=男,1=女)

if This_Player.Gender = 0 then
begin
This_Player.SysGiveGift('魔法长袍(男)',1,true);
end else
begin
This_Player.SysGiveGift('魔法长袍(女)',1,true);end;
end;

检测多个物品物品和扣除物品

procedure _1;
 begin
if ((This_Player.GetBagItemCount ('命运神石') >= 1) and (This_Player.GetBagItemCount ('金矿') >= 20) and  (This_Player.GoldNum  >= 1000000)) then
   begin
This_Player.Take('金矿',20);
This_Player.Take('命运神石',1);
This_Player.DecGold(1000000);
This_Player.Give('命运之刃',1);
ServerSay('恭喜玩家【' + This_Player.Name + '】成功兑换了[命运之刃]', 3);
//等待
    end else
begin
   This_NPC.NpcDialog(This_Player,
    '<>   <无法兑换,请看以下说明/fcolor=103>:|\'
    +'|1.<材料不足/fcolor=250>|'
    +'|                                                             </@zhanshen>') ;
end;
end;

检测金币和扣除金币

if This_Player.GoldNum >= 100000 then
begin
This_Player.DecGold(100000);
ServerSay('系统:玩家【' + This_Player.Name + '】开启了狂暴之力.干掉他可获得10W金币!!',3);
This_Player.PlayerNotice('成功开启狂暴之力!', 5);
end else
This_Player.PlayerNotice('你没有元宝,无法开启狂暴之力!', 5);
end;

给物品 :

This_Player.Give('屠龙',2);

***给物品前务必判断包裹中是否有足够的空间,否则将不能给予物品,但相应货币或者材料将会正常扣除***

空包裹:

This_Player.FreeBagNum

如要给玩家2个屠龙,屠龙不可堆叠,所以至少需要两个包裹空位:

if This_Player.FreeBagNum >= 2 then

This_Player.Give('屠龙',2);

包裹中物品数量:

This_Player.GetBagItemCount('物品')

扣除物品

This_Player.Take('屠龙',2');

***扣除物品前物品判断包裹中是否有足够的物品,切记在扣除的方法中判断***

if This_Player.GetBagItemCount ('屠龙') >= 2 then

This_Player.Take('屠龙',2');

检查人物等级

if This_Player.Level >= 1 then

人物元宝>检测,增加,减少

if This_Player.YBNum >= 10 then  //检测人物元宝数量
This_Player.ScriptRequestAddYBNum(10);  //增加人物10元宝
This_Player.ScriptRequestSubYBNum(10);  //扣除人物10元宝

人物灵符>检测,增加,减少

if This_Player.MyLFnum >= 1 then  //检测人物灵符数量
This_Player.AddLF(0,10);   //增加人物10灵符
This_Player.DecLF(0,10,false);  //扣除人物10灵符

杀死人物给10元宝(狂暴专用)

This_Player.findPlayerByName(KillerName).ScriptRequestAddYBNum(10);

检查人物职业(0=战士,1=法师,2=道士)

if This_Player.Job = 0 then

检测某地图指定怪物数量

This_NPC.CheckMapMonByName(地图名称 , 怪物名称)

检测指定地图所有怪物数量

CheckOtherMapMon(地图名称);该接口不需要npc调用

地图刷怪命令

This_Npc.CreateMon('地图名称', X, Y, 范围, '怪物名称', 数量);

传送:

This_Player.Flyto(地图名,x,y); 将角色传送至某地图的x、y点

This_Player.RandomFlyTo(地图名); 将角色传送至某地图的随机点

如:  
This_Player.Flyto('D711',200 + random(3) - 1,204 + random(3) - 1);

表示将角色传送至地图 D711的 200,204的 3*3范围内随机点
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。