Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] eventboss command.

Initiate Mage
Joined
Apr 6, 2008
Messages
4
Reaction score
0
i know it's not much and i'm not sure if it's been released yet but here's a command to summon multiple "The Boss" just put it in ur players.cpp with all other commands like eventslime if ur using krytical's repack. and i'll post a guide if u want it to be an event for weaker players.
Code:
 else if(strcmp(command, "bossevent" ) == 0){
PlayersPacket::showMassage("The Boss event now started!", 1);
for (int i = 1; i <= 8; i++) {
Mobs::spawnMob(player, 9400300);}
}

Edit: sorry about the first code this is the new one with a loop in.
 
Master Summoner
Joined
Apr 2, 2008
Messages
538
Reaction score
0
Who would wna summon that much bosses? Plus your script is chunky.
 
&#12484;
Loyal Member
Joined
Apr 12, 2008
Messages
729
Reaction score
28
lol u obviously didnt look at my guide on making an event...take out all of the

Mobs::spawnMob(player, 9400300);

except 1 and add a loop for heavens sake...geze...
 
Back
Top