◇逍遥◆MIR2◇ 发表于 2022-9-16 12:46:28

91M2引擎如何访问其他角色脚本和命令说明

如何访问其他角色
procedure Main(Npc: TNormNpc; Player: TPlayObject; Args: TArgs);
var
Obj: TPlayObject;
begin
Obj := Gamelib.FindPlayer('张三');
if Obj <> nil then
begin
    Obj.SendMessage('你的东西掉了。。。', 0);
    if Obj.Wepon <> nil then
    begin
      Obj.Wepon.AddDC := Obj.Wepon.AddDC + 10;< /FONT>
      Obj.UpdateItem(Obj.Wepon);
    end;
end
else
    Npc.MessageBox(Player, '玩家“张三”不在线!!!');
end;


注:脚本中本身没有“我”的这个概念,而是根据传人参数确定当前执行者,所以对通过Gamelib查找出来的角色和参数传入的角色的操作没有区别
同时需要注意的是,Gamelib.FindPlayer只能够查找当前在线的角色,角色不存在或不在线是不可被查找到的,如果需要判定更准确,可以辅以数据库操作来判断角色是否存在

aifusengh 发表于 2022-9-16 17:10:36

真是难得给力的帖子啊。

uy8jj5tm7tu 发表于 2022-9-20 15:41:18

强烈支持楼主ing……

ruocan 发表于 2022-9-21 04:23:01

强烈支持楼主ing……

dubi2232 发表于 2022-9-24 09:14:55

真是难得给力的帖子啊。

dgjsldkjg 发表于 2022-9-24 14:07:48

感恩无私的分享与奉献 :)

南飘中 发表于 2022-9-25 06:43:32

真是难得给力的帖子啊。

njust008 发表于 2022-9-28 04:45:08

我只是路过打酱油的。

mgy2011 发表于 2022-9-28 05:12:31

看到这帖子真是高兴!

byscp 发表于 2022-9-29 01:26:21

强烈支持楼主ing……
页: [1] 2
查看完整版本: 91M2引擎如何访问其他角色脚本和命令说明