Jump to content
  • 0

World Boss Script Modification..


Musika6988

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  53
  • Reputation:   6
  • Joined:  09/09/13
  • Last Seen:  

Hello rAthenians!

Can i ask for a  modification on this wonderful script?

1. A Treasure Chest will spawn right after the World Boss dies and all players can hit it and once it dies (The Treasure Chest) it will give RANDOM Item to all the players on that fild?

2. The World Boss spawn only twice a week?

3. If possible, it will have like 3 kinds of MVPs and spawn 1 only in Random.

4. Instead of Towns, it spawns in Fields to avoid some afk players or vendors receiving Reward.

5. And if no one kills the World Boss, it will disappear. With lets say maybe like, 1 Hour duration before it disappears?

6. For example, no one killed it and that is Saturday which is the 1st of Twice a week spawn, it will disappear and reSpawn on Sunday which is the 2nd day of Twice a week spawn?

I would really appreciate this so much!

Hope someone would bother.:wub:

-	script	WorldBoss	-1,{

OnClock2021:
	.@map$ = .townMap$[rand ( getarraysize ( .townMap$ ) - 1 )];
	.@mins = .sleep / 60000;
	announce "[World Boss] A World Boss will appear in " + .@mins + " minutes", bc_all, 0xFF0000;
	sleep .sleep;
	monster .@map$, 153, 175, "--ja--", .wBossId, 1, strnpcinfo(3) + "::OnWBossDied";
	announce "[World Boss] A World Boss has appeared in " + .@map$ + " to wreck havoc!!", bc_all, 0xFF0000;
	end;
	
OnWBossDied:
	announce "[World Boss] " + strcharinfo(0) + " killed the World Boss! Congratulations!", bc_all, 0xFF0000;
	getitem .rewardId, .rewardCount;
	end;
	
OnInit:
	setarray .townMap$[0],"prontera","geffen";
	.wBossId = 1001;		// monsterID
	.rewardId = 512;		// reward ID
	.rewardCount = 50;		// how many rewards
	.sleep = 60000; 		// 60000ms = 1min
	end;
}
Quote

 

 

Edited by Musika6988
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2345
  • Joined:  10/28/11
  • Last Seen:  

something like this ?

https://pastebin.com/hpdUzSf7

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
Answer this question...

×   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...