UID18912
帖子
精華
主題
積分4968
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限20
註冊時間2007-9-22
在線時間 小時
最後登錄1970-1-1
TA的每日心情 | 奮斗 2010-10-17 09:14 AM |
---|
簽到天數: 1 天 連續簽到: 0 天 [LV.1]初來乍到
|
這是廣播腳本....開機時都沒問題一廣播就出問題
能幫看一下媽...
我想要讓她使用後3分鐘後才能在使用..
//---------------------------------------------------
prontera.gat,147,169,5 script 小喇叭廣播 703,{
if ( @WaitingTime == 1 ) goto L_WAITING;
mes " [小喇叭廣播]";
mes " 你好,我可以幫你廣播一些資訊";
mes " 為了防止有人利用廣播刷屏";
mes " 規定每次廣播間隔3分鐘";
next;
mes " [小喇叭廣播]";
mes " 這是收費服務";
mes " 根據每種資訊檔次";
mes " 將會分別收取不同的資訊費用";
mes " 請選擇你要發送資訊的類型";
next;
menu " 找MM ( 2W Zeny)",S_mes1,
" 找GG ( 2W Zeny)",S_mes2,
" 找人組隊 ( 2W Zeny)",S_mes3,
" 找人帶我 ( 1W Zeny)",S_mes4,
" 工會收人 (10W Zeny)",S_mes5,
" 自訂廣播<限20個中文字以內>(20W zeny)",S_mes6;
close;
L_WAITING:
mes " [小喇叭廣播]";
mes " 你剛剛發過廣播";
mes " 請稍微等會再來";
close;
S_mes1:
if ( Zeny < 20000 ) goto Over;
set $@post_name$,strcharinfo(0);
set Zeny , Zeny - 20000;
announce "【小喇叭廣播】漂亮MM們好,我是帥哥 (" + $@post_name$ + "),有MM願意和我聊天嗎?M我噢,嘿嘿^_^",15;
goto L_END;
close;
S_mes2:
if ( Zeny < 20000 ) goto Over;
set Zeny , Zeny - 20000;
set $@post_name$,strcharinfo(0);
announce "【小喇叭廣播】帥GG們好,我是最最可愛的(" + $@post_name$ + ")美眉,有帥GG願意陪我聊天嗎?M偶喔,嘻嘻^o^",15;
goto L_END;
close;
S_mes3:
if ( getcharid(1) == 0 ) goto S_mes3_1;
if ( Zeny < 20000 ) goto Over;
set $@post_name$,strcharinfo(0);
set Zeny,Zeny - 20000;
set $@post_partyname$,getpartyname(getcharid(1));
announce "【小喇叭廣播】大家好,我是(" + $@post_name$ + "),有人願意加入(" + $@post_partyname$ + ")隊伍一起練級打寶嗎?M我噢,吼吼-_-",15;
goto L_END;
close;
S_mes3_1:
mes " [小喇叭廣播]";
mes " 你還沒有組隊哦!";
mes " 為了節約你的Zeny";
mes " 請先建立隊伍!";
close;
S_mes4:
if ( Zeny < 10000 ) goto Over;
set $@post_name$,strcharinfo(0);
set Zeny , Zeny - 10000;
announce "【小喇叭廣播】 GGJJ們好,我是新人(" + $@post_name$ + "),有GG/JJ願意帶我練級嗎?M偶喔,嗚嗚T_T",15;
goto L_END;
close;
S_mes5:
if ( getcharid(2) == 0 ) goto S_mes5_1;
set $@post_name$,strcharinfo(0);
if ( Zeny < 100000 ) goto Over;
set Zeny , Zeny - 100000;
set $@post_guildname$,getguildname(getcharid(2));
set $@post_guildmaster$,getguildmaster(getcharid(2));
announce "【小喇叭廣播】 (" + $@post_guildname$ + ")工會收人嘍,入會的快M會長(" + $@post_guildmaster$ + ")!!",15;
goto L_END;
close;
S_mes5_1:
mes " [小喇叭廣播]";
mes " 你好像還沒有加入任何工會嘛";
mes " 為了節約你的Zeny";
mes " 還是有了工會再發吧";
close;
S_mes6:
mes " [小喇叭廣播]";
mes "在輸入資訊之前請看^FF0000注意事項^000000";
mes "^3355FF1、只限40個字元或20個中文字以內^000000";
mes "^3355FF2、禁止發送任何含有暴力、色情、政治、人身攻擊的文字^000000";
next;
mes " [小喇叭廣播]";
mes "如有玩家發現違反規定者請抓圖在論壇上舉報,任何違規者^FF0000凍結帳戶1周^000000,再犯將^FF0000直接刪除帳戶^000000!";
next;
if ( Zeny < 200000 ) goto Over;
set $@post_name$,strcharinfo(0);
set Zeny,Zeny-200000;
input @string$;
if ( @string$ == "end" ) goto L_CLOSE;
if ( @string$ == "完成" ) goto L_CLOSE;
announce "【小喇叭廣播】(" + $@post_name$ + ")說:" + @string$ + "。",15;
goto L_CLOSE;
close;
L_CLOSE:
mes "資訊發送成功";
goto L_END;
close;
Over:
mes " [小喇叭廣播]";
mes "對不起,你的金額不足";
close;
L_END:
set @WaitingTime,1;
addtimer 180000,"ev_Waiting";
close;
} |
評分
-
查看全部評分
|