📄 npc_ridineagle.txt
字号:
//----------------------------------------------------------------------
// 大嘴鸟管理兵士 : Event_Rental v1.0
//----------------------------------------------------------------------
prontera.gat,55,350,5 script 大嘴鸟管理兵士 708,{
mes "[大嘴鸟管理兵士]";
if (Class != 7) goto L_START_1;
mes "欢迎光临,骑士你要一只大嘴鸟吗?";
mes "一只2500金币";
next;
menu "是的",-,"不是,我随便看看",L_MENU_1;
if (Zeny >= 2500) goto L_SUB_1;
mes "[大嘴鸟管理兵士]";
mes "骑士,您的金钱不足.";
mes "...你是破产了吗?";
close;
L_SUB_1:
mes "[大嘴鸟管理兵士]";
mes "你必须学过骑乘才能使用大嘴鸟,否则,你只会浪费钱财。";
next;
menu "是的",-,"不是,我随便看看",L_ROOT_1;
set Zeny,Zeny-2500;
setriding;
L_ROOT_1:
close;
L_MENU_1:
mes "[大嘴鸟管理兵士]";
mes "欢迎下次再来...";
close;
L_START_1:
mes "有甚麽事请吗?";
mes "大嘴鸟是骑士专用的,其他的职业不能使用。";
close;
}
in_hunter.gat,146,99,2 script 猎鹰管理员 708,{
mes "[猎鹰管理员]";
mes "你想买一只猎鹰吗?费用是2500Zeny。";
next;
menu "是的",L_Gfalcon,"不是",L_EXIT;
L_Gfalcon:
if (Class != 11) goto Fail_it;
if (Zeny < 2500) goto Fail_z;
if (getskilllv(127) < 1) goto Fail_sk;
goto Gfalcon_ok;
Fail_it:
mes "[猎鹰管理员]";
mes "对不起,猎鹰是猎人专用的,其他的职业不能使用。";
close;
Fail_z:
mes "[猎鹰管理员]";
mes "对不起,虽然你是猎人,但是2500Zeny是不能少的!";
close;
Fail_sk:
mes "[猎鹰管理员]";
mes "对不起,你必须有一级训鹰术的技能才能使用猎鹰。";
close;
Gfalcon_ok:
mes "[猎鹰管理员]";
mes "那么好吧,这只猎鹰就交给你了!";
set Zeny,Zeny-2500;
setfalcon;
close;
L_EXIT:
mes "[猎鹰管理员]";
mes "那么好吧,欢迎下次再来!";
close;
}
prontera.gat,232,318,3 script 嘟嘟鸟管理士兵 708,{
mes "[嘟嘟鸟管理士兵]";
if (Class != 14) goto L_START_1;
mes "欢迎光临,十字军你要一只嘟嘟鸟吗?";
mes "一只2500 zeny";
next;
menu "是的",-,"不是,我随便逛逛",L_MENU_1;
if (Zeny >= 2500) goto L_SUB_1;
mes "[嘟嘟鸟管理士兵]";
mes "十字军,您没足够的钱";
mes "...你是破产了吗?";
close;
L_SUB_1:
mes "[嘟嘟鸟管理士兵]";
mes "你不许学过骑乘才能使用嘟嘟鸟";
mes "否则,你只会浪费钱财!";
next;
menu "是的",-,"不是,我随便看看",L_ROOT_1;
set Zeny,Zeny-2500;
setriding;
L_ROOT_1:
close;
L_MENU_1:
mes "[嘟嘟鸟管理士兵]";
mes "欢迎下次再来...";
close;
L_START_1:
mes "有甚麽事请吗?";
mes "嘟嘟鸟是十字军专用的,其他的职业不能使用。";
close;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -