Radian Posted September 15, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted September 15, 2014 - Is it possible that you can implement a mapflag that will shows the other players Emblem. - I was trying to grab a screen shot for a guild. and setting it on gvg mapflag they are fighting each other :3 and its annoying. please put a mapflag that will enable Guild Emblem on a certain map. thanks! Link to comment Share on other sites More sharing options...
Aleos Posted September 30, 2014 Group: Development Manager Topic Count: 56 Topics Per Day: 0.01 Content Count: 732 Reputation: 525 Joined: 12/13/11 Last Seen: June 13, 2024 Share Posted September 30, 2014 Something like this should work: clif.c ((map_flag_gvg2(bl->m)?1:0)<<2 || map[bl->m].flag.mymapflag)| // SIEGE - Show emblem over characters heads when in GvG (WoE castle) Not sure a new flag for the emulator needs to be put in as this isn't something that has a high request value. Link to comment Share on other sites More sharing options...
Radian Posted October 1, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted October 1, 2014 Something like this should work: clif.c ((map_flag_gvg2(bl->m)?1:0)<<2 || map[bl->m].flag.mymapflag)| // SIEGE - Show emblem over characters heads when in GvG (WoE castle) Not sure a new flag for the emulator needs to be put in as this isn't something that has a high request value. but PK is off right? using mapflag gvg on? for example on prontera. Link to comment Share on other sites More sharing options...
Aleos Posted October 1, 2014 Group: Development Manager Topic Count: 56 Topics Per Day: 0.01 Content Count: 732 Reputation: 525 Joined: 12/13/11 Last Seen: June 13, 2024 Share Posted October 1, 2014 It's using OR, so it doesn't have to be a GvG map, it will fall back to your mapflag that you give it. Link to comment Share on other sites More sharing options...
Radian Posted October 17, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted October 17, 2014 It's using OR, so it doesn't have to be a GvG map, it will fall back to your mapflag that you give it. How about making the pvp mapflag ( shows the emblem of the player/guild ) ?? is it possible? Link to comment Share on other sites More sharing options...
Kichi Posted October 22, 2014 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 509 Reputation: 80 Joined: 11/20/11 Last Seen: October 3, 2020 Share Posted October 22, 2014 posible Link to comment Share on other sites More sharing options...
Radian Posted October 22, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted October 22, 2014 posible How? Link to comment Share on other sites More sharing options...
Kichi Posted October 22, 2014 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 509 Reputation: 80 Joined: 11/20/11 Last Seen: October 3, 2020 Share Posted October 22, 2014 i ever saw somewhere inside ramod source.please show your effort by open the source. Link to comment Share on other sites More sharing options...
Aleos Posted October 24, 2014 Group: Development Manager Topic Count: 56 Topics Per Day: 0.01 Content Count: 732 Reputation: 525 Joined: 12/13/11 Last Seen: June 13, 2024 Share Posted October 24, 2014 Just try: (((map_flag_gvg2(bl->m)?1:0) || (map[bl->m].flag.pvp?1:0))<<2)| // SIEGE - Show emblem over characters heads when in GvG (WoE castle) Link to comment Share on other sites More sharing options...
Radian Posted October 24, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted October 24, 2014 Just try: (((map_flag_gvg2(bl->m)?1:0) || (map[bl->m].flag.pvp?1:0))<<2)| // SIEGE - Show emblem over characters heads when in GvG (WoE castle) i will try this. thanks for the reply Link to comment Share on other sites More sharing options...
Recommended Posts