UID91325
帖子
精華
主題
積分736
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限10
註冊時間2008-6-8
在線時間 小時
最後登錄1970-1-1
該用戶從未簽到
|
我的私服轉生有三轉
一轉送150點,二轉是200,三轉250
可是我重置的NPC會把點數吃掉...只會給1325
該怎辦~~
我附上腳本內容...請大大位我解答
//By GeisHa
monk_in.gat,105,52,4 script 重置輔助人員 720,{
mes "[重置輔助人員]";
mes "我專門負責重置點數";
mes "你想重置什麼呢?";
next;
menu "^FF3355技能點(費用10w)^000000",L1,"^FF3355屬性點(費用10w)^000000",L2,"^FF3355技能點和屬性點(費用15w)^000000",L3,"取消",LEnd;
L1:
if (Zeny<100000) goto NeedZenys;
mes "[重置輔助人員]";
mes "已經重置好了";
mes "^FF3355請好好分配^000000";
set Zeny,Zeny-100000;
resetskill;
close;
end;
L2:
if(Llv==1) goto L11;
if(Llv==2) goto L12;
if(Llv==3) goto L13;
if (Zeny<100000) goto NeedZenys;
mes "[重置輔助人員]";
mes "已經重置好了";
mes "^FF3355請好好分配^000000";
set Zeny,Zeny-100000;
resetstatus;
close;
end;
L11:
if (Zeny<100000) goto NeedZenys;
mes "[重置輔助人員]";
mes "已經重置好了";
mes "^FF3355請好好分配^000000";
set Zeny,Zeny-100000;
set StatusPoint,StatusPoint+150;
resetstatus;
close;
end;
L12:
if (Zeny<100000) goto NeedZenys;
mes "[重置輔助人員]";
mes "已經重置好了";
mes "^FF3355請好好分配^000000";
set Zeny,Zeny-100000;
set StatusPoint,StatusPoint+200;
resetstatus;
close;
end;
L13:
if (Zeny<100000) goto NeedZenys;
mes "[重置輔助人員]";
mes "已經重置好了";
mes "^FF3355請好好分配^000000";
set Zeny,Zeny-100000;
set StatusPoint,StatusPoint+250;
resetstatus;
close;
end;
L3:
if (Zeny<150000) goto NeedZenys;
mes "[重置輔助人員]";
mes "已經重置好了";
mes "^FF3355請好好分配^000000";
set Zeny,Zeny-150000;
set StatusPoint,StatusPoint+250;
resetstatus;
resetskill;
close;
end;
NeedZenys:
mes "[重置輔助人員]";
mes "窮人不要來湊熱鬧!影響我做生意";
close;
end;
LEnd:
close;
end;
} |
|