Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/04/12 in all areas

  1. File Name: VIP Lounge File Submitter: Syouji File Submitted: 02 May 2012 File Category: Maps & Textures Content Author: Syouji The VIP Lounge. A perfect spot for players with exclusive priviliges can mingle at~. Comes with several rooms and an outdoor field. Note: You will NOT see the purple border in the map. It's for design purposes Click here to download this file
    1 point
  2. Have you tried enabling this in trunk/npc/merchants/refine.txt ? //============================================================ //= Main Refiner Function //============================================================ //= To allow auto safe refining/multiple refining set the //= second argument to '1' in the function call. //============================================================ Example: prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",1; end; } Was that what you're looking for?
    1 point
  3. Thanks, finally got it working: query_sql "DELETE FROM `rathena`.`global_reg_value` WHERE `str`='#test'";
    1 point
  4. you could delete them directly from the sql table.
    1 point
  5. I love when people dont write solution of their problem
    1 point
  6. Hi Kariton Revolution, IPTables can definitely help you against small to medium-sized DOS/DDOS attacks. But against legitimate DDOS attacks; it is impossible to stop because it will utilize your server's port capacity even though your server is rejecting/dropping the packets. So IPTables does help, but only to a certain extent. The only true way to prevent DDOS is having a load balancer or some sort of filtration system which screens the packets before delivering to the server.
    1 point
  7. Good, keeps you off bad things rofl.
    1 point
  8. It resulted an error... <-- that really helped
    1 point
  9. use this setting however this may affect other statuses better use this... @status.c if (sd) tick>>=1; //Half duration for players. case SC_STONE: case SC_FREEZE: sc_def = 3 +status->mdef; +if(sd && type == SC_FREEZE && sc_def >= 51 && status->luk >= 110) + sc_def = battle_config.pc_max_sc_def; break; then recompile
    1 point
  10. In pc.c Search pc_useitem function, in this function find: if( sd->sc.count && ( sd->sc.data[sC_BERSERK] || (sd->sc.data[sC_GRAVITATION] && sd->sc.data[sC_GRAVITATION]->val3 == BCT_SELF) || sd->sc.data[sC_TRICKDEAD] || sd->sc.data[sC_HIDING] || sd->sc.data[sC__SHADOWFORM] || (sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOITEM) )) add sc's: if( sd->sc.count && ( sd->sc.data[sC_BERSERK] || (sd->sc.data[sC_GRAVITATION] && sd->sc.data[sC_GRAVITATION]->val3 == BCT_SELF) || sd->sc.data[sC_TRICKDEAD] || sd->sc.data[sC_HIDING] || sd->sc.data[sC__SHADOWFORM] || (sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOITEM) || sd->sc.data[sC_BLADESTOP_WAIT] || // <--add this sd->sc.data[sC_BLADESTOP] // <-- and this ))
    1 point
×
×
  • Create New...