战神引擎HelperQuest.pas自定义按钮触发说明
已有 407 次阅读2023-3-23 22:43
|个人分类:战神引擎|
战神引擎
以下内容添加到以下文件
D:\mud2.0\Mir200\Envir\PsMapQuest\HelperQuest.pas 内
这是默认目录
如果用是一些启动器 那文件目录会有所差异 只能自己寻找 了 搜索文件名即可
{$I
helperCall/private.pas}
{$I helperCall/huishouFact.pas}
{$I
helperCall/taoZhuangAbilToFact.pas}
//远程仓库-----------对应背包内仓库按钮
需要盘古开启VIP2内功能 增改函数 随身仓库函数开启
procedure _callCanku();
begin
This_Player.NewBieGiftConsume;
end;
//领取元宝-----------对应商城充值页面领取元宝
procedure
_getYB();
var
d2,d3, payNum : integer;
s1 , td : double;
begin
s1
:= GetNow;
d2 := This_Player.GetS(23,3);
td :=
ConvertDBToDateTime(d2);
d3 := minusDataTime(s1,td);
if d3 >= 3
then
begin
This_Player.SetS(23,3,
ConvertDateTimeToDB(s1));
This_Player.QueryAwardCode(This_Player.Name);
end
end;
Begin
end.