Jump to content
  • 0

MVP Announcer


Radian

Question


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

can i request a script that will announce when the MVP is alive? or a custom monster? everytime they re spawn it will announce like this..

"MVP Name" has revive back from the dead. and looking for preys

and when a player kill the MVP it will announce again that i will re spawn in [MVP respawn rate time].

 

is it possible?

Edited by Ginji
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   6
  • Joined:  07/03/13
  • Last Seen:  

U need that NPC which hold on place after mvp killing (MvP killed 15:46:05 by Someone) and add new check for MvP respawn.

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:  

Yes, an NPC that will announce that "MVP Name" has re spawn. and announce again when it will be back.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  95
  • Reputation:   2
  • Joined:  08/23/12
  • Last Seen:  

up for this need this script also.


UP! any update?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  71
  • Reputation:   25
  • Joined:  11/23/11
  • Last Seen:  

src/mob.c

 

Change:

    // MvP tomb [GreenBox]
    if ( md->tomb_nid )
        mvptomb_destroy(md);

 

to:

 

    // MvP tomb [GreenBox]
    if ( md->tomb_nid )
    {
        char message[128];
        sprintf(message,"MVP %s has revive back from the dead, and looking for preys.",md->db->name);
        intif_broadcast(message,strlen(message)+1,BC_DEFAULT);
        mvptomb_destroy(md);
    }

 

Obviously, recompile.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  95
  • Reputation:   2
  • Joined:  08/23/12
  • Last Seen:  

Omnipotent

 

I got an error with this while compiling : BC_DEFAULT

invalid function.


up for this need help pls.
Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...