crystilia,61,78,4 script 色魔小雨 67,{
mes "大家好我是個色魔!";
mes "我將提供各位以下的功能";
next;
switch(select("創造物品","創造物品二","超猛狀態輔助","增加金錢","取消")) {
case 1:
mes "[輔助戒指]";
mes "輸入物品ID";
next;
input .@iteget;
mes "[輔助戒指]";
mes "輸入物品數量";
next;
input .@iteget2;
getitem .@iteget,.@iteget2;
mes "成功創造出" +getitemname(.@iteget)+ "數量" +.@iteget2+ "個";
close;
case 2:
mes "來講解怎麼使用創造物品二";
mes "這個功能如果不懂,請用普通的創造物品";
mes "解釋開始:";
mes "<物品名稱或ID>,<數量>,<鑒定旗標>,<精煉等級>,<是否損壞>";
mes "<卡片1>,<卡片2>,<卡片3>,<卡片4>";
mes "例如我要創造一把短劍,編號是1202";
mes "1202,1,1,20,0,4841,4841,4841,4841";
mes "這樣就是一把短劍數量一個已鑒定精練+20";
mes "0損壞,卡片1等於名弓10等,卡片2等於名弓10等";
mes "卡片3等於名弓10等,卡片4等於名弓10等";
next;
mes "請輸入物品編號";
input .@a;
next;
mes "請輸入物品數量";
input .@b;
next;
mes "請輸入是否鑒定請輸入1";
input .@c;
next;
mes "請輸入精煉等級最高20";
input .@d;
next;
mes "請輸入是否損壞請輸入0";
input .@e;
next;
mes "請輸入卡片一編號";
input .@f;
next;
mes "請輸入卡片二編號";
input .@g;
next;
mes "請輸入卡片三編號";
input .@h;
next;
mes "請輸入卡片四編號";
input .@i;
getitem2 .@a,.@b,.@c,.@d,.@e,.@f,.@g,.@h,.@i;
close;
case 3:
SC_START 29,80000000,10;
SC_START 30,80000000,10;
SC_START 32,80000000,10;
percentheal 100,100;
sc_start SC_INTFOOD,1200000,10;
sc_start SC_VITFOOD,1200000,10;
sc_start SC_STRFOOD,1200000,10;
sc_start SC_AGIFOOD,1200000,10;
sc_start SC_DEXFOOD,1200000,10;
sc_start SC_LUKFOOD,1200000,10;
close;
case 4:
mes "請輸入你要增加的金錢數量";
mes "輸入20億為上限";
next;
input .@aaa;
set Zeny,Zeny + .@aaa;
mes "成功製造" +Zeny+ "元";
close;
case 5:
mes "如果還需要我色魔雨提供服務";
mes "記得在來找我@@";
close;
}
}
//==============================
crystilia,71,77,4 script 大家來亂鬥 733,{
mes "[守衛]";
mes "你好!這邊是大家一起來亂鬥場";
mes "想要展現自己實力就來吧!";
next;
menu
"羅盤 房間 [" + getmapusers("pvp_n_7-5.gat") + " / 100]",Lpro,
"隨你亂殺區 [" + getmapusers("pvp_n_6-5.gat") + " / 100]",Lizu,
"取消",Lcancel;
Lpro:
if(getmapusers("pvp_n_7-5.gat") >= 100 ) goto LError;
announce "『 " + strcharinfo(0) + " 』進入了:羅盤 房間。",15,0x1e90ff;
warp "pvp_n_7-5",0,0;
end;
Lizu:
if(getmapusers("pvp_n_6-5.gat") >= 100 ) goto LError;
announce "『 " + strcharinfo(0) + " 』進入了:隨你亂殺區。",15,0x1e90ff;
warp "pvp_n_6-5",0,0;
end;
Lcancel:
close;
LError:
mes "[pvp傳送人員]";
mes "對不起,滿員了。";
close;
}