UID98475
帖子
精華
主題
積分426
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限5
註冊時間2008-7-28
在線時間 小時
最後登錄1970-1-1
該用戶從未簽到
|
這是我設置的路標
amatsu.gat,122,117,5 script 指示牌 837,{
end;
OnInit:
waitingroom "→→精練區→→",0;
end;
}
然後開啟會顯示
30 reading npc [ 45] npc/路標/指示牌F.txt npc_parse_script : dup event 指示牌::OnInit
2008/7/29 下午 04:22:30
我ㄧ共設置了6個路標 都是一樣的,都只有下面的路標出現,上面的聊天室格子都不會顯示。
還有 我的變身玻利腳本都一直出錯,每次跑都跳,可以幫我看看哪出問題嗎?
我給他跑的時候看紀錄MAPLOG那,發現在在下面那一段紅色部分前面會有*這個
可以交我該如何修改嗎?感謝各位大大
amatsu.gat,102,143,6 script 波利變身服務 784,{
mes "[波利變身服務]";
mes "您好~我是波利變身服務";
mes "我可以用我的法力把你變成波利系列的怪物!";
mes "如果要變回去~~請登出!!";
next;
mes "[波利變身服務]";
mes "--以下為價目表--";
mes "波利 要 150萬";
mes "土波利 要 150萬";
mes "聖誕波利 要 150萬";
mes "金屬波利 要 150萬";
mes "冰波利 要 300萬";
mes "波波利 要 300萬";
mes "天使波利 要 800萬";
mes "幽靈波利 要 800萬";
mes "惡魔波利 要 800萬";
mes "聖天使波利 要 800萬";
next;
menu "我要變身!! ",A1,"好貴..還是算了",A2;
A1:
menu "波利",OK1,"土波利",OK2,"聖誕波利",OK3,"金屬波利",OK4,"冰波利",OK5,"波波利",OK6,"天使波利",OK7,"幽靈波利",OK8,"惡魔波利",OK9,"聖天使波利",OK10;
A2:
mes "好吧~那再見囉!!"
close;
// ---價錢審核---
// ---第一階段---
OK1:
if (Zeny<15000000) goto NM;
set Zeny,Zeny-15000000;
goto 01;
OK2:
if (Zeny<15000000) goto NM;
set Zeny,Zeny-1500000;
goto 02;
OK3:
if (Zeny<15000000) goto NM;
set Zeny,Zeny-1500000;
goto 03;
OK4:
if (Zeny<15000000) goto NM;
set Zeny,Zeny-1500000;
goto 04;
// ---第二階段---
OK5:
if (Zeny<30000000) goto NM;
set Zeny,Zeny-3000000;
goto 05;
OK6:
if (Zeny<30000000) goto NM;
set Zeny,Zeny-3000000;
goto 06;
// ---第三階段---
OK7:
if (Zeny<80000000) goto NM;
set Zeny,Zeny-8000000;
goto 07;
OK8:
if (Zeny<80000000) goto NM;
set Zeny,Zeny-8000000;
goto 08;
OK09:
if (Zeny<80000000) goto NM;
set Zeny,Zeny-8000000;
goto 09;
OK10:
if (Zeny<80000000) goto NM;
set Zeny,Zeny-8000000;
goto 10;
// ---變身---
01:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+" disguise "+1002;
close;
02:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+" disguise "+1113;
close;
03:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+" disguise "+1062;
close;
04:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+" disguise "+1613;
close;
05:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+" disguise "+1242;
close;
06:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+":@disguise "+1031;
close;
07:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+":@disguise "+1096;
close;
08:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+":@disguise "+1120;
close;
09:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+":@disguise "+1582;
close;
10:
set $inde, rand(1,1);
if ($inde == 1) atcommand strcharinfo(0)+":@disguise "+1338;
close;
// ---沒錢---
NM:
mes "[波利變身服務]";
mes "再去賺點錢來!!";
close;
end;
}
[ 本帖最後由 ask2477532 於 2008-7-29 04:49 PM 編輯 ] |
|