Jump to content

Siberian

Members
  • Posts

    67
  • Joined

  • Last visited

2 Followers

Profile Information

  • Gender
    Not Telling
  • Location
    Brasil

Recent Profile Visitors

3258 profile views

Siberian's Achievements

Poring

Poring (1/15)

  • First Post
  • Collaborator
  • Conversation Starter
  • Dedicated
  • Week One Done

Recent Badges

0

Reputation

  1. Hi, Does anyone know how to solve this problem, is making an flood in the console. (08/01/2022 06:27:03) [ Warning ] : skill_castend_damage_id: Unknown skill used:38 (08/01/2022 06:32:03) [ Warning ] : skill_castend_damage_id: Unknown skill used:38 (08/01/2022 06:32:04) [ Warning ] : skill_castend_damage_id: Unknown skill used:38 Thanks.
  2. Hi, Does anyone know how to solve this problem, is making an absurd flood in the console. (07/31/2022 15:16:46) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:16:46) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:17:27) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:17:38) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:18:22) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:18:32) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:18:36) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:18:53) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:18:53) [ Error ] : status_change_start: Invalid status change (888)! (07/31/2022 15:18:53) [ Error ] : status_change_start: Invalid status change (888)! SOLVED. Thanks!
  3. How to avoid this error when compiling? OS: Ubuntu 17.10 It does not change anything, but I'd like to avoid the error. Thanks.
  4. Can anybody help me to setup a proxy server? I pay in paypal. Thank you!
  5. I'm trying diff the hexed: 2017-06-14bRagexeRE But some diffs are not working. ERROR: Failed in Step 1 - No Packet Key Patterns matched Packet First Key Encryption Packet Second Key Encryption Packet Third Key Encryption These are applied, but in-game are still visible Hide Achievement Button Hide BG Button Hide Booking Button Hide Quest Button how to solve this? Thanks guys.
  6. Hi Guys, I'm really needing the poring race running, in the latest version of rathena. Anyone have and could you help me? Thanks!
  7. Hi guys, Does anyone know how to record in the picklog the sending player and the receiving player on the same line. Sorry my bad English. Thanks.
  8. Hi guys, Could someone help me convert this command to the latest version of rathena? Index: src/map/script.c /* =============================================================== * +-> [Carlos H] * -> getstorageitem(<item_id>,<quant>{,"<name>"}); --------------------------------------------------------------- */ BUILDIN_FUNC(getstorageitem){ TBL_PC * sd = ((script_hasdata(st,4)) ? map_nick2sd(script_getstr(st,4)):script_rid2sd(st)); struct script_data* data; struct item_data * item_data; struct item item_tmp; int nameid = 0, amount = script_getnum(st,3),x = 0; data = script_getdata(st,2); get_val(st,data); if( data_isstring(data) ){ const char * nameitem = conv_str(st,data); if( (item_data = itemdb_searchname(nameitem)) != NULL ) nameid = item_data->nameid; }else if( (item_data = itemdb_exists(conv_num(st,data))) != NULL ) nameid = item_data->nameid; if( nameid && sd ){ sd->state.storage_flag = 1; memset(&item_tmp,0,sizeof(item_tmp)); item_tmp.nameid = nameid; item_tmp.identify = 1; if( !itemdb_isstackable2(item_data) && amount ) for( ; x < amount; x++ ) storage_additem(sd,&item_tmp,amount); else storage_additem(sd,&item_tmp,amount); storage_storageclose(sd); script_pushint(st,amount); }else script_pushint(st,0); return 0; } Index: src/map/storage.c int storage_additem(struct map_session_data* sd, struct item* item_data, int amount) Index: src/map/storage.h int storage_additem(struct map_session_data* sd, struct item* item_data, int amount); Sorry my bad English. Thank you.
  9. Hi guys, Does anyone have a change in source to add items directly to storage? Ex: getitemstorage? Sorry my bad English. Thanks.
  10. Hi, Does anyone know how to increase the maximum time in rentitem command? I put 90 days = 129,600 minutes, the emulator changed to 58,017 minutes. Thanks.
×
×
  • Create New...