Danz 0 Posted January 23, 2017 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. Quote Share this post Link to post Share on other sites
0 Asheraf 123 Posted January 23, 2017 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; } 1 Danz reacted to this Quote Share this post Link to post Share on other sites
0 Danz 0 Posted January 23, 2017 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? Quote Share this post Link to post Share on other sites
0 Asheraf 123 Posted January 23, 2017 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) 1 Danz reacted to this Quote Share this post Link to post Share on other sites
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