UID15269
阅读权限50
威望 点
积分940
注册时间2013-6-1
最后登录1970-1-1
听众
收听
升级
88%
|
发表于 2013-10-28 15:10:22
|
显示全部楼层
prontera.gat,128,125,5 script 生命体S进化员 721,{
mes "生命体S进化员";
mes "你好";
mes "你想要进化你的生命体嘛?";
next;
menu "是的",shi,"让我再想想",bu;
bu:
mes "生命体S进化员";
mes "考虑清楚再来吧";
close;
shi:
if(gethominfo(6)<99) goto nolv;
if(gethominfo(1)==6001) goto noclass;
if(gethominfo(1)==6002) goto noclass;
if(gethominfo(1)==6003) goto noclass;
if(gethominfo(1)==6004) goto noclass;
if(gethominfo(1)==6005) goto noclass;
if(gethominfo(1)==6006) goto noclass;
if(gethominfo(1)==6007) goto noclass;
if(gethominfo(1)==6008) goto noclass;
if(gethominfo(1)==6049) goto classover;
if(gethominfo(1)==6050) goto classover;
if(gethominfo(1)==6051) goto classover;
if(gethominfo(1)==6052) goto classover;
if(gethominfo(1)==6048) goto classover;
mes "生命体S进化员";
mes "你想随机进化一种生命体S";
mes "还是支付500W来选择进化呢?";
next;
menu "我想随机进化",gorand,"我想选择进化",gos;
noclass:
mes "生命体S进化员";
mes "你的生命体没有进化为第二形态哦";
mes "把你的生命体培育到非常亲密然后喂他吃贤者之石吧";
close;
classover:
mes "生命体S进化员";
mes "你的生命体已经是生命体S了哦";
close;
gorand:
mes "生命体S进化员";
mes "你的生命体进化成功咯";
hommutate;
close;
gos:
if(zeny < 5000000) goto nozeny;
mes "生命体S进化员";
mes "你想要进化成什么呢?";
next;
menu "【蝴蝶】艾拉",aila,"【独角兽】巴伐利亚",bafalia,"【黄蜂】塞拉",saila,"【石头人】迪特尔",ditel,"【猫女】埃莉诺",ailino;
close;
aila:
mes "生命体S进化员";
mes "你的生命体进化成功了哦";
mes "快去看看吧";
hommutate 6048;
set Zeny,Zeny-5000000;
close;
bafalia:
mes "生命体S进化员";
mes "你的生命体进化成功了哦";
mes "快去看看吧";
hommutate 6049;
set Zeny,Zeny-5000000;
close;
saila:
mes "生命体S进化员";
mes "你的生命体进化成功了哦";
mes "快去看看吧";
hommutate 6050;
set Zeny,Zeny-5000000;
close;
ditel:
mes "生命体S进化员";
mes "你的生命体进化成功了哦";
mes "快去看看吧";
hommutate 6051;
set Zeny,Zeny-5000000;
close;
ailino:
mes "生命体S进化员";
mes "你的生命体进化成功了哦";
mes "快去看看吧";
hommutate 6052;
set Zeny,Zeny-5000000;
close;
nolv:
mes "生命体S进化员";
mes "你的生命体等级不够哦";
mes "请练到99级再来吧";
close;
nozeny:
mes "生命体S进化员";
mes "你的钱不够哦";
mes "带好钱再来吧";
close;
} |
|