UID46538
帖子
精華
主題
積分-5
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限0
註冊時間2007-12-28
在線時間 小時
最後登錄1970-1-1
TA的每日心情 | 開心 2010-6-17 04:53 PM |
---|
簽到天數: 1 天 連續簽到: 0 天 [LV.1]初來乍到
|

樓主 |
發表於 2008-10-6 15:57:17
|
顯示全部樓層
cmd_in02.gat,210,101,5 script 賭場職員 727,{
mes "[賭場職員]";
mes "歡迎光臨仙境賭場,我能幫你什麼?";
next;
menu "購買籌碼",Lbuy_1,
"兌換現金",Lshell,
//"兌換門票",Lshell2,
"遊戲講解",Lgame,
"賭場說明",Lmes_1;
L_NOLEVEL:
mes "[賭場職員]";
mes "您的等級不足";
close;
Lbuy_1:
if (BaseLevel < $buylevel) goto L_NOLEVEL;
mes "[賭場職員]";
mes "每"+$cmdmoney+"Zeny可換1個籌碼,您要買多少?一次最多只能買500個"(問題)<<<<<<,,,,,,在遊戲裡面出現每0Zeny可換1個籌碼,我想要把0Zeny改成1000...而且我換籌碼也不會扣錢....
next;
Lbuy_2:
input @a;
if (@a < 1) goto Lbuy_2;
if (@a > 500) goto Lbuy_2;
if (countitem(17000) > 29500) goto Lcmtd;
if (zeny < 500 * @a) goto Lnomy;
getitem 17000,@a;
set zeny,zeny - $cmdmoney * @a;
mes "[賭場職員]";
mes "您購買了"[email=+@a]+@a[/email]+"個籌碼,祝您玩得愉快,賭得開心。";
close; |
|