Jump to content

Bringer

Members
  • Posts

    745
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Bringer's post in tbox event was marked as the answer   
    - script Treasure Box Summoner -1,{ OnClock2100: announce "A rare Treasure Box has been spawned somewhere in Prontera.",0; monster "prontera",0,0,"Treasure Box",1955,1,"Treasure Box Summoner::OnTBoxKilled"; OnTBoxKilled: announce "The rare Treasure Box has been destroyed by "+strcharinfo(0)+"!", bc_all; end; } this script is hidden npc
    announce every hour and drop 1 TCG only.
    change OnClock2100 to 
    OnMinute00: //Things to do ,which will happen every Hour at Minute 00  
    To drop 1 tcg edit the mob id 1995 add 7227 on drop list or can use this command automatic get the 7227 when the players killed
    getitem 7227,1; add this code below on announce
  2. Bringer's post in is this because of gepard ? was marked as the answer   
    contact @Functor
     
  3. Bringer's post in OMG Man Hole Skill Weird Problem !! :( was marked as the answer   
    https://github.com/rathena/rathena/commit/46872477699e1cd80d761d84329618642d039240
     
    LINK : 
     
  4. Bringer's post in Updated Wizard/Sage Soul Link Modification(Increase HP by BaseLvl*200 HP) was marked as the answer   
    Go to your trunk/src/map/status.c and look for:
    //Bonus by SC
    if (sc) {
    if(sc->data[SC_INCMHP])
    bonus += sc->data[SC_INCMHP]->val1;
    if(sc->data[SC_EARTH_INSIGNIA] && sc->data[SC_EARTH_INSIGNIA]->val1 == 2)
    bonus += 500;
    //Bonus Effect for Wizard & Sage Link
    if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
    bonus += ((TBL_PC*)bl)->status.base_level * 200;
×
×
  • Create New...