Jump to content

Enable Emblem in a Map


Radian

Recommended Posts


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

- 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

  • 3 weeks later...

  • Group:  Development Manager
  • Topic Count:  56
  • Topics Per Day:  0.01
  • Content Count:  732
  • Reputation:   525
  • Joined:  12/13/11
  • Last Seen:  

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


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

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


  • Group:  Development Manager
  • Topic Count:  56
  • Topics Per Day:  0.01
  • Content Count:  732
  • Reputation:   525
  • Joined:  12/13/11
  • Last Seen:  

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

  • 3 weeks later...

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

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


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  509
  • Reputation:   80
  • Joined:  11/20/11
  • Last Seen:  

posible

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

posible

How? :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  509
  • Reputation:   80
  • Joined:  11/20/11
  • Last Seen:  

i ever saw somewhere inside ramod source.
please show your effort by open the source.

Link to comment
Share on other sites


  • Group:  Development Manager
  • Topic Count:  56
  • Topics Per Day:  0.01
  • Content Count:  732
  • Reputation:   525
  • Joined:  12/13/11
  • Last Seen:  

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


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

 

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

×
×
  • Create New...