Jump to content

Vanquiser

Members
  • Posts

    81
  • Joined

  • Last visited

Posts posted by Vanquiser

  1. NVM i Already did it by self

     

    Quote

    script.cpp

    static int buildin_maprespawnguildid_sub_pc(struct map_session_data* sd, va_list ap)
    {
        int16 m=va_arg(ap,int);
        int g_id=va_arg(ap,int);
        int flag=va_arg(ap,int);

        if(!sd || sd->bl.m != m)
            return 0;
        if(
            (sd->status.guild_id == g_id && flag&1) || //Warp out owners
            (sd->status.guild_id != g_id && flag&2) || //Warp out outsiders
            (sd->status.guild_id == 0 && flag&2)    // Warp out players not in guild
        )
         if ( pc_get_group_level(sd) != 99 ) // your group you want to disable
            pc_setpos(sd,sd->status.save_point.map,sd->status.save_point.x,sd->status.save_point.y,CLR_TELEPORT);        
        return 1;
    }
     

     

  2. On 5/29/2020 at 11:04 PM, Chaos92 said:

    ./configure

    make clean

    make sql

    make server

    still same. i got the same error. when i do make sql.

    i try to compile in windows the result was success. but when i use linux Centos 6 it show that error. is there a problem on my VPS? i already follow all instruction to run a linux based rathena server.

  3. Just now, Chaos92 said:

    I didnt test recompile using windows, but a few minutes ago ive tried latest rathena compile using centos and theres no error like your screenshot.

    ./configure
    make clean server

    am i right?.

    im using centos

  4. 9 hours ago, Chaos92 said:

    From the error, see the lines of it. it seems like there are more than 1 declaration  line 249 and 638.

    Its a fresh rathena git. i dont do any modification.

  5. any can anyone do some like dis.. i know its huge project.


    //Switch to Server Episodes

    //1=Start of the Adventure Episode

    //2=Lutie Episode

    //3=Comodo Episode

    //4=War of Emperium Episode

    //5=Juno ~ Forgotten Legacy of an Ancient Era Episode

    //6=Beyond Rune-Midgarts (The Global Project) Episode

    //7=Umbala ~ Village of the Utan Tribe Episode

    //Just a sample i dont know the whole episodes of RO

    episode_type=1

     

    example when the episode 2 is selected the other mobs map job nps of episode and earlier will be disabled

    Sorry for my english

  6. can anyone create this status effect.. uhmm.. item_bonus

    sc_start sc_antifrost,1800000,10;

    when you insert the script to POTION item

    there a status icon in right side .. and you cant frost until the duration ends



    TIA rathena <3

  7. [sRC] Cell PvP 1.7

     

    Last update : 18/07/2014

     

    Support : rAthena SVN revision 12425

     

    FeatureCreate cell for player vs player with out mapflag pvp

    How to use this ?

    You can enable or disable this feature

    conf/battle/misc.conf

     

    // Addon Cell PVP [Napster]

    // Enable Deathmatch for cell pvp
    // Default: 0
    // 0 = No
    // 1 = Yes
    cellpvp_deathmatch: 1
     
    // Delay player alive deathmatch for cell pvp
    // Default: 1000 (1 secand)
    cellpvp_deathmatch_delay: 1000
     
    // When player is dead recovery HP/SP Rate for cell pvp
    // Default: 100 (recovery 100%)
    deathmatch_hp_rate: 100
    deathmatch_sp_rate: 100
     
    // Enable buff when player is dead for cell pvp
    // Default: 1
    // 0 = No
    // 1 = Yes
    // Request core npc files use name "deathmatch_core"
    cellpvp_autobuff: yes
     
    // Can atk player in party
    // Default: 1
    // 0 = No
    // 1 = Yes
    cellpvp_party_enable: no
     
    // Can atk player in guild
    // Default: 1
    // 0 = No
    // 1 = Yes
    cellpvp_guild_enable: no
     
    // When player move to cell pvp is delay walk out cooldown
    // Default: 5000 (5 secand)
    cellpvp_walkout_delay: 5000

     

    how to create cell pvp

     

     

    - script test_cellpvp -1,{

    end;
    OnInit:
    setcell "new_1-1",45,109,53,102,cell_pvp, 1;
    end;
    }

     

    How to use auto buff script

    Add npc script don't edit npc name "deathmatch_core

     

     

    function script F_Autobuff {

     
    sc_start SC_BLESSING, 60000, 10;
    sc_start SC_INCREASEAGI, 60000, 10;
    return;
    }
     
    - script deathmatch_core -1,{
     
    callfunc("F_Autobuff");
    end;
    }

     

    Change log

     

     

    Cell PvP 1.7

    1. Fix & Cleanup some code

    2. Fix timer info when walkout cell pvp

    3. support rAthena SVN revision 12425+

    enjoy!

    Thx man :) .. Finally.. i can add this feature to my Server :D

  8. Why not invent ur own idea rather than copying someones  idea?

    EDIT:

    If  u want a quality server, spend some money, dont ask all for FREE. 

    Copying idea is not a problem but to ask them for free is SICK. lol

     

    Its free :3 .. but the diff files is not supported on latest rathena git .. and this idea will help others members if they want to use this feature ..

×
×
  • Create New...