tppecc 發表於 2009-1-18 17:41:44

拍賣系統腳本問題

NPC傳送沒問題~但是拍賣系統的NPC卻沒有拍賣物品的選項~請問是哪裡出問題~!
請幫幫我~下面是我的腳本~!!



//===== eAthena Script =======================================
//= Auction system
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//=
//= Auction house releated NPCs, and warps
//===== Additional Comments: =================================
//= 1.0 First version, place holders only.
//============================================================
// 拍賣場 傳送
//============================================================
morocc,182,95,6 script 拍賣場 服務人員#moc 98,{
callfunc "F_AuctionWarper",1;
}
prontera,149,165,5 script 拍賣場 服務人員#prt 864,{
callfunc "F_AuctionWarper",2;
}
yuno,129,116,0 script 拍賣場 服務人員#yuno 90,{
callfunc "F_AuctionWarper",3;
}
lighthalzen,205,169,6 script 拍賣場 服務人員#lhz 833,{
callfunc "F_AuctionWarper",4;
}
function script F_AuctionWarper {
mes "[拍賣場 服務人員]";
mes "請問你要去拍賣場嗎?";
next;
if (select("是的:不是") == 1) {
mes "[拍賣場 服務人員]";
mes "那麼祝你一路順風~";
close2;
switch(getarg(0)) {
case 1:
   warp "auction_01",179,53; end;
case 2:
   warp "auction_01",21,43; end;
case 3:
   warp "auction_02",151,23; end;
case 4:
   warp "auction_02",43,24; end;
}
}
mes "[拍賣場 服務人員]";
mes "那麼下一次請你再來呦";
close;
}
// 標示牌
//============================================================
//morocc,180,97,6 script 服務 標示牌#moc::AuctionSign 837,{
mes "[服務文章]";
mes "拍賣移動 服務人員";
close;
}
//prontera,216,120,4 duplicate(AuctionSign) 服務 標示牌#prt 837,{
//yuno,131,116,0 duplicate(AuctionSign) 服務 標示牌#yuno 837,{
//lighthalzen,207,169,6 duplicate(AuctionSign) 服務 標示牌#lhz 837
// 傳送點
//============================================================
auction_01,180,49,0 warp auction_entrance_moc 1,1,morocc,182,92
auction_01,22,37,0 warp auction_entrance_prt 1,1,prontera,214,120
auction_02,151,17,0 warp auction_enterance_juno 1,1,yuno,132,119
auction_02,43,17,0 warp auction_enterance_lhz 1,1,lighthalzen,209,169
// 拍賣場裡的NPC
//============================================================
auction_01,182,68,6 script 拍賣管理人#moc1::拍賣 98,{
mes "[拍賣仲介人]";
mes "這一次進了許多新貨";
mes "你要看嗎?";
next;
if (select("是的:不是") == 1) {
mes "[拍賣仲介人]";
mes "來來趕快來看..";
OpenAuction;
close;
}
mes "[拍賣仲介人]";
mes "那麼請你下一次在看吧";
close;
}
auction_01,182,75,0 duplicate(拍賣) 拍賣管理人#moc2 99
auction_01,177,75,2 duplicate(拍賣) 拍賣管理人#moc3 98
auction_01,177,68,4 duplicate(拍賣) 拍賣管理人#moc4 99
auction_01,21,74,4 duplicate(拍賣) 拍賣管理人#prt1 117
auction_01,27,78,4 duplicate(拍賣) 拍賣管理人#prt2 116
auction_01,16,78,4 duplicate(拍賣) 拍賣管理人#prt3 115
auction_02,158,47,6 duplicate(拍賣) 拍賣管理人#yuno1 90
auction_02,145,47,2 duplicate(拍賣) 拍賣管理人#yuno2 90
auction_02,151,54,0 duplicate(拍賣) 拍賣管理人#yuno3 90
auction_02,152,41,4 duplicate(拍賣) 拍賣管理人#yuno4 90
auction_02,57,46,2 duplicate(拍賣) 拍賣管理人#lhz1 874
auction_02,31,46,6 duplicate(拍賣) 拍賣管理人#lhz2 874
auction_02,43,65,4 duplicate(拍賣) 拍賣管理人#lhz3 833
頁: [1]
查看完整版本: 拍賣系統腳本問題