Jump to content

kalabasa

Members
  • Posts

    371
  • Joined

  • Last visited

Posts posted by kalabasa

  1. On 3/5/2022 at 8:23 PM, Emistry said:

    the account_id has been deprecated from the database long time ago, simply adding back the column wont make it work since the column wont have any values stored in it.

    You have to change the SQL statement to retrieve the info that you needed.

    @total_guild_member = query_sql( "SELECT `account_id`, `char_id` FROM `char` WHERE `guild_id` = "+ [email protected]_id, @accountid_member, @charid_member );

     

    or a simple attempts

    -    script    guild_announce    -1,{
    OnWhisperGlobal:
    	if (!getcharid(2)) end;
    	.message_owner$ = strcharinfo(0);
    	.message$ = "";
    	for ([email protected] = 0; [email protected] < 10; [email protected]++)
    		.message$ = .message$ + (([email protected] > 0) ? "#":"") + @whispervar0$;
    	addrid(3, 0, getcharid(2));
    	announce "[ "+ .message_owner$ +" ]: "+ .message$, bc_self;
    	end;
    }

     

    no idea if its working but when i type a message it alway shows ########

  2. My Github desktop suddenly not opening. i barely open the app. works fine yesterday. 

    what i did was update the app to v 2.9.12 (hoping it would fix) but it's not.

    now i tried to restart my laptop and i can't open anymore

     

    i got some questions

    1. if i reinstall github would i loose or delete my rathena files? currently it is connected via clone

    2. if i successfully install github and working would i able to reconnect back the files to github (i do not know how to explain this)  <-- my purpose is to monitor any changes i made if i messed up.

     

    here is the screenshot before i restarted my laptop btw im using windows 7 SP1

    Capture.PNG

  3. i believe this is associated with the /sf command i already toggled it on but it isn't displaying on the chat box

    also how to show if the required gemstone is not present in the inventory

    a warning will show for ex, casts safetywall no gemstone in the user's inventory

    it will say "blue gemstone required" on the chat box

  4. On 4/1/2022 at 2:10 PM, funtwocrasher said:

    Hi! What rAthena version are you using? I dont find any StatusIconChangeTable in my status.cpp

    i download mine last 2020

    On 4/1/2022 at 2:28 PM, funtwocrasher said:

    Mine is working but is has a timer, this is my item script, bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,1; }",-1,1,0,EFST_VIPSTATE;

    I want to use it as SC_VIPSTATE so that it has no timer on it. Please help.
     

    any idea how to show all icon in all characters created on the account

    currently the only character that has icon is who use the item.

  5. status.cpp

    Find all case SC_JEXPBOOST: and insert case SC_VIPSTATE:

    except this part

    case SC_EXPBOOST:

    case SC_JEXPBOOST:

    case SC_JP_EVENT04:

     

    find StatusIconChangeTable[SC_JEXPBOOST

    StatusIconChangeTable[SC_VIPSTATE] = EFST_VIPSTATE;

     

    status.hpp

    find SC_JEXPBOOST then

    SC_VIPSTATE,

     

    EFST_KILLING_AURA,

    EFST_VIPSTATE = find the last number on efstids.lub +1,

    script_constants.hpp

    add below sc_jexpboost

    export_constant[SC_VIPSTATE];

     

    working fine with me as i write this

    the only lacking now it has no timer

     

     

  6. was roaming around @discord and this is actually works

    if ( s_bl->type == BL_PC && t_bl->type == BL_MOB ) {
    		struct map_session_data *sd = BL_CAST( BL_PC, s_bl );
    		if ( ( ( (TBL_MOB*)target )->mob_id == 1288 && !strcmp( mapindex_id2name(sd->mapindex), "guild_vs1" ) ) &&
    			( sd->status.guild_id == mapreg_readreg( add_str("$koegid") ) || battle_getcurrentskill(src) > 0 ) )
    		return 0;
    	}
    

    if you remove this it wont bypass anymore but the emp would respawn over and over again when killed

  7. i check my saved nemo profile. i don't have Enable GvG damage display toggle on either.

    and yeah i already set to "yes".

    On 3/16/2022 at 11:23 PM, mrfizi said:
    hide_woe_damage: yes

    I've prefer to write yes

    I'm sure if you still got this issue after changing it, the problem is your client.
    You can refer this discussion for more info:

     

     

  8. i was trying to remove the mapflag gvg_noparty in guild_vs1 to 5 maps

    i already tried to remove it comment it out 

    then reload, re-run the server again.

    but still i cant use devotion skill on those maps

    i already also check on skill_nocast and devotion skill ain't there.

     

     

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.