Jump to content

qtdan

Members
  • Posts

    196
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by qtdan

  1. how to use iteminfo i already added it to my clientinfo.xml but still the items are in korean how to fix ?
  2. item doesn't show [Debug]: (map_mapname2mapid) mapindex_name2id: Map "" not found in index list
  3. 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 ?
  4. 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.
  5. 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
  6. is anyone have that setup ?
  7. but still How to fix Taekwon Boy, Girl Character ? Client : 2015-11-04aRagexe
  8. How can i add flux item icons and item images ?
  9. Did you Clean before you recompile it ? ./configure, make clean, make server.
  10. use latest kro then you can have it.
  11. @Youness nope. lets wait for the lastest code.
  12. no other way to use 2018 clients ?
  13. How can i fix 2018-06-20eRE Ignore Resource Errors, even i implemented that Errors still showed up. I want to enable Novice suit on my server but if the player is paladin and the pike or any spear puts on error message will popped up. hmmm some one help me thanks
  14. can you link me up the clients too ? thanks.
  15. not just only spears even katars hmmmm.... does anyone know how to enable ignore missing sprites ?
  16. i already enable it to GVG maps but still doesn't work. hmmm ?
  17. btw the asura animation. the asura without sliding.
  18. this topic has been online for long but cannot find a good answer, some threads has an answer but the codes are outdated. Asura Spam Like This :
×
×
  • Create New...

Important Information

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