Jump to content
darking123

mushroom event

Recommended Posts

how to make the prize to be set in the script not ingame because every server restart i should set the prize and i dont like it

splendide,185,200,4 script Find the Mushroom 1084,{

mes "[ Find The Mushroom ]";
if(getgmlevel() < 90) {
if(.Event==0) mes "There is no Find the Mushroom event.";
else {
mes "There is a Find the Mushroom event on now!";
mes "Location: "+ .Map$;
mes "Prize: " + getitemname(.ItemID);
mes "Number of Mushrooms: " + .Mushrooms;
}
close;
}
mes "Hello "+strcharinfo(0)+"! Please customize this event:";
Main:
next;
mes "[ Find The Mushroom ]";
switch(select("Item [" + getitemname(.ItemID) + "]:Start Event:End Event")) {
case 1:
mes "Which item would you like the Mushroom to drop?";
mes "Please input the item ID:";
input .ItemID;
goto Main;
case 2:
mes "Starting the event now...";
set .Event,1;
close2;
goto OnStart;

case 3:
mes "Ending the event now...";
if(.Event) announce ""+strcharinfo(0)+" ended Find the Mushroom Event!",bc_all;
killmonster  .Map$,"All";
set .Event,0;
close;
}

OnClock0400:
OnClock0800:
OnClock1200:
OnClock1600:
OnClock2300:
OnStart:
announce "Find the Mushroom : It's time to play Find the Mushroom!",0;
sleep2 1000;
set [email protected], rand(1,14);
if ([email protected] == 14) set .Map$,"alberta";
if ([email protected] == 13) set .Map$,"umbala";
if ([email protected] == 12) set .Map$,"niflheim";
if ([email protected] == 11) set .Map$,"ayothaya";
if ([email protected] == 10) set .Map$,"hugel";
if ([email protected] == 9) set .Map$,"yuno";
if ([email protected] == 8) set .Map$,"comodo";
if ([email protected] == 7) set .Map$,"xmas";
if ([email protected] == 6) set .Map$,"aldebaran";
if ([email protected] == 5) set .Map$,"izlude";
if ([email protected] == 4) set .Map$,"payon";
if ([email protected] == 3) set .Map$,"geffen";
if ([email protected] == 2) set .Map$,"morocc";
if ([email protected] == 1) set .Map$,"prontera";
sleep2 1000;
set [email protected], rand(1,5);
if ([email protected] == 5) set .Mushrooms,"5";
if ([email protected] == 4) set .Mushrooms,"4";
if ([email protected] == 3) set .Mushrooms,"3";
if ([email protected] == 2) set .Mushrooms,"2";
if ([email protected] == 1) set .Mushrooms,"1";
announce "Find the Mushroom : The Mushroom has spawned in "+ .Map$ +"!",0;
sleep2 10000;
announce "Find the Mushroom : " + .Mushrooms + " Mushrooms have spawned in "+ .Map$ +"!",0;
sleep2 10000;
monster .Map$,0,0,"Don't kill me please!",1084,.Mushrooms,"Find the Mushroom::OnMobKilled";
end;

OnMobKilled:
mapannounce .Map$,"We've got a winner: " + strcharinfo(0) + " Congrats!",0;
getitem .ItemID,2;
set .Event,0;
end;

}

Link to comment
Share on other sites

Have you checked the one inside the SVN? It's inside the script with the OnInIt function.

OnInit:
set .Prize,512;	// Reward item ID
set .Amount,10;	// Reward item amount
set .GM,60;	// GM level required to access NPC
setarray .Maps$[0],"izlude","geffen","morocc","prontera"; // Possible maps
end;

There's also this one in my own SVN. Additionally, your script is a little outdated.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.