Jump to content

qtdan

Members
  • Posts

    223
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by qtdan

  1. 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 ?
  2. 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.
  3. 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
  4. is anyone have that setup ?
  5. but still How to fix Taekwon Boy, Girl Character ? Client : 2015-11-04aRagexe
  6. How can i add flux item icons and item images ?
  7. Did you Clean before you recompile it ? ./configure, make clean, make server.
  8. use latest kro then you can have it.
  9. @Youness nope. lets wait for the lastest code.
  10. no other way to use 2018 clients ?
  11. 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
  12. not just only spears even katars hmmmm.... does anyone know how to enable ignore missing sprites ?
  13. i already enable it to GVG maps but still doesn't work. hmmm ?
  14. btw the asura animation. the asura without sliding.
  15. 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 :
  16. @n0tttt on latest git ? can i have the source ? thanks.
  17. nahhh not the item sprite just try novice suit with spear or with katar.
×
×
  • Create New...