Jump to content

dantoki

Members
  • Posts

    235
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by dantoki

  1. i got this error when i apply the patch BGeAmod before Vending 2.0.
  2. Set it to 1 instead of 2. there is no penalty if you se it to 1.
  3. Having bunch of errors on the latest git.
  4. i doesn't work i already rebooted my VPS and rebuild it. still doesn't change. Problem Solve thanks. stat += 10 + (status->luk*10/50); Wrong code.
  5. I edit my status.cpp this stat += status->luk + 10; // (every 10 luk = +1 perfect flee) to this : stat += status->luk + 100; // (every 100 luk = +1 perfect flee) and recompiled my server and still doesn't apply the changes there's no error either. hmmm... can someone help me i need it badly. thanksss!!!
  6. how to use iteminfo i already added it to my clientinfo.xml but still the items are in korean how to fix ?
  7. item doesn't show [Debug]: (map_mapname2mapid) mapindex_name2id: Map "" not found in index list
  8. This command from eAmod /*========================================== * Creaci?e items en el suelo, en un Area. *------------------------------------------*/ ACMD_FUNC(flooritem) { char item_name[100]; int number = 0, count; struct item_data *item_data; nullpo_retr(-1, sd); memset(item_name, '\0', sizeof(item_name)); if( !message || !*message || ( sscanf(message, "\"%99[^\"]\" %d", item_name, &number) < 1 && sscanf(message, "%99s %d", item_name, &number) < 1 )) { clif_displaymessage(fd, "Usage: @flooritem <itemname/itemid> [quantity]"); return -1; } if( number <= 0 ) number = 1; if ((item_data = itemdb_searchname(item_name)) == NULL && (item_data = itemdb_exists(atoi(item_name))) == NULL) { clif_displaymessage(fd, msg_txt(sd,19)); // Invalid item ID or name. return -1; } count = map_addflooritem_area(&sd->bl, 0, 0, 0, item_data->nameid, number); if( count != 0 ) if( number == count ) clif_displaymessage(fd, "All items created."); else { sprintf(atcmd_output, "%d item(s) created.", count); clif_displaymessage(fd, atcmd_output); } else { clif_displaymessage(fd, "No items created!!."); return -1; } return 0; } can add to rathena ?
  9. I've already done searching for guides but most of it seems OLD and can't apply to the latest git, is there anyone know how to ADD CUSTOM JOB 2019 ? Note: Im using 2015 client so i can ENABLE CUSTOM JOB. I've perfectly apply this guide : but still i have an error. Please Guide me thanks.
  10. Im using 2018 12 04 client, i use /effect to off the effect but the effect still seing is it a bug? Sorry for my bad english
  11. but still How to fix Taekwon Boy, Girl Character ? Client : 2015-11-04aRagexe
  12. How can i add flux item icons and item images ?
  13. Did you Clean before you recompile it ? ./configure, make clean, make server.
  14. use latest kro then you can have it.
  15. @Youness nope. lets wait for the lastest code.
×
×
  • Create New...