Jump to content
  • 0
Danz

Exp Map & MvP Card dropped

Question

First of all I want to apologize for my English and convenience, but it is something I really need help with.

I would like some npcs requests, I will be grateful for the help.

 

1. Double Experience on random maps lasting 30 minutes, after 30 minutes another random map gets exp in double.

2. Display of mvps cards dropped, ie the player drops a card and appears in the NPC 'NICK, DROPED CARD, TIME AND DAY'.

I will be forever grateful.

 

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

here you go (exp npc) just add maps to the array.

-	script	exp_event	FAKE_NPC,{
OnMinute30:
	setarray(.maps$, "prontera", "geffen", "izlude", "alberta");
	.origin_rate = 100;
	.event_rate = 200;
	if (.pick$ != "") {
		setmapflag(.pick$, mf_bexp, .origin_rate);
		setmapflag(.pick$, mf_jexp, .origin_rate);
	}		
	.pick$ = .maps$[rand(getarraysize(.maps$)-1)];
	setmapflag(.pick$, mf_bexp, .event_rate);
	setmapflag(.pick$, mf_jexp, .event_rate);
	announce(_("The rates on map: " + .pick$ + " are " + .event_rate + " now."), bc_all);
	end;
}

Share this post


Link to post
Share on other sites
  • 0

Asheraf

Thanks a lot, a doubt, after 30 minutes finished, the exp map is not removed for a new map or does it hold a mapflag on the map even after the end?

every 30 min the rates on the old map would be rested to .origin_rate (100)

Share this post


Link to post
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.   Restore formatting

  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.

Loading...

×
×
  • Create New...

Important Information

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