Jump to content

Promise

Members
  • Posts

    386
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Promise

  1. db/(pre-re/Re)/skill_require_db.txt buscamos: 485,0,0,15,0,0,600:700:800:900:1000:1100:1200:1300:1400:1500,0:1:2:3:4:5:6:7:8:9:10:12:13:14:15:16:17:18:19:20:21:22,0,0,none,SC_CARTBOOST,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WS_CARTTERMINATION 486,0,0,15,0,0,3000:3500:4000:4500:5000,0:1:2:3:4:5:6:7:8:9:10:12:13:14:15:16:17:18:19:20:21:22,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WS_OVERTHRUSTMAX Y reemplazamos por: 485,0,0,15,0,0,0,0:1:2:3:4:5:6:7:8:9:10:12:13:14:15:16:17:18:19:20:21:22,0,0,none,SC_CARTBOOST,0,IDITEM,CANTIDAD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WS_CARTTERMINATION 486,0,0,15,0,0,0,0:1:2:3:4:5:6:7:8:9:10:12:13:14:15:16:17:18:19:20:21:22,0,0,none,0,0,IDITEM,CANTIDAD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WS_OVERTHRUSTMAX Reemplazas por eso y editas donde dice IDITEM,CANTIDAD en los dos, lo cambias por el item que quieras y la cantidad que quieras que gaste. Segun mis calculos así debería funcionar.
  2. just disable renewal and dont add Doram on jobmaster
  3. conf/groups.conf
  4. What u mean with Pods? Any item? Item ID?
  5. Same with pc_readaccountreg
  6. Check your group.conf You may add on your group: commandname: [true,true]
  7. int atcommand_mobalive(const int fd, struct map_session_data* sd, const char* command, const char* message) { char mob_name[100]; int mob_id; int number = 0; struct s_mapiterator* it; nullpo_retr(-1, sd); if (!message || !*message || sscanf(message, "%99[^\n]", mob_name) < 1) { clif_displaymessage(fd, "Por favor, digite o nome ou id do monstro (use: @mobalive <nome ou ID>)."); return -1; } if ((mob_id = atoi(mob_name)) == 0) mob_id = mobdb_searchname(mob_name); if(mob_id > 0 && mobdb_checkid(mob_id) == 0){ snprintf(atcmd_output, sizeof atcmd_output, "Monstro inexistente %s!",mob_name); clif_displaymessage(fd, atcmd_output); return -1; } if(mob_id == atoi(mob_name) && mob_db(mob_id)->jname) strcpy(mob_name,mob_db(mob_id)->jname); // --ja-- // strcpy(mob_name,mob_db(mob_id)->name); // --en-- snprintf(atcmd_output, sizeof atcmd_output, "Procurando pelo monstro %s em %s ", mob_name, mapindex_id2name(sd->mapindex)); clif_displaymessage(fd, atcmd_output); it = mapit_geteachmob(); while( true ) { TBL_MOB* md = (TBL_MOB*)mapit_next(it); if( md == NULL ) break;// no more mobs if( md->bl.m != sd->bl.m ) continue; if( mob_id != -1 && md->class_ != mob_id ) continue; ++number; if( md->spawn_timer == INVALID_TIMER ) snprintf(atcmd_output, sizeof(atcmd_output), "%2d[%s] %s", number, "Vivo", md->name); else snprintf(atcmd_output, sizeof(atcmd_output), "%2d[%s] %s", number, "Morto", md->name); clif_displaymessage(fd, atcmd_output); } mapit_free(it); return 0; } Try this.
  8. Can u upload your pc.c? i think you have to edit the part uint8 pc_itemcd_add if( e_tick > 99 ) sprintf(e_msg,msg_txt(sd,379), // Item Failed. [%s] is cooling down. Wait %.1f minutes. itemdb_jname(sd->item_delay[i].nameid), (double)e_tick / 60); else sprintf(e_msg,msg_txt(sd,380), // Item Failed. [%s] is cooling down. Wait %d seconds. itemdb_jname(sd->item_delay[i].nameid), e_tick+1); clif_colormes(sd->fd,color_table[COLOR_YELLOW],e_msg); return 1; // Delay has not expired yet
  9. itemslotcounttable.txt
  10. Thank u!
  11. Thank u both guys!
  12. Original: http://cerescp.sourceforge.net/demo/ My Modification: http://www.valkyriero.net/cp/ Any feedback?
  13. Solved. Changed from: packet_ver: default to: packet_ver: 25.
  14. Why cashshop not working properly? Show me your packet_db.txt Mailbox its easy to fix: go to src/map/mail.c find: if( sd->state.storage_flag || sd->state.vending || sd->state.buyingstore || sd->state.trading || sd->npc_id || sd->npc_shopid ) return 0; Replace: if( sd->state.storage_flag || sd->state.vending || sd->state.buyingstore || sd->state.trading ) return 0; Save and recompile.
  15. https://rathena.org/board/tracker/issue-7644-gear-not-display/ But this web: http://trac.rathena.org/changeset/17313 Not working... Anybody knows how to fix this ?
  16. Solved guys, i enabled "Read Luas Before Lub" again, and put them on lua files/ Thank u.
  17. Hi guys, i have the next problem: Im making my own client (its like my 12 client) I can log very well, with no errors, but it seems like the client isn't reading LuaFiles, i cant even chat, use shortcuts, etc. Im using 20100730 client. Tryed: Correspondent luas on: luafiles514/lua files/ Correspondent luas on: lua files/ Disabled Read Data Folder First Disabled Load Lua Before Lub Tryed another LuaFiles Still cant use anything ingame.
  18. How many lvls you want to give to em on equip?
  19. Conf/Battle/Client.conf hide_woe_dmg: No
  20. Have you loaded any npc? Maybe you added an npc wich are buging the savepoints.
  21. Can u provide us your inter_athena.conf please.
  22. You have to add: map_name[TAB]mapflag[TAB]noteleport As Haziel said, GMs can evade mapflag effects, so test them always with a normal character.
  23. upload your drops.conf and exp.conf
×
×
  • Create New...