Exp Map & MvP Card dropped

Danz

New member
Messages
4
Points
0
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.
 
here you go (exp npc) just add maps to the array.

Code:
-	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;
}
 
AsherafThanks 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?

 
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)

 
Back
Top