Jump to content

Blazing Spear

Members
  • Posts

    208
  • Joined

  • Last visited

Everything posted by Blazing Spear

  1. trunk/npc/re/mobs/fields/prontera prt_fild01,0,0,0,0 monster Poring 1002,30,5000,0,0 << edit this!!
  2. then you manually translate it??
  3. yup it is in lua files/quest
  4. Error in Compiling 64bit Centos OS svn: The path '..' appears to be part of a Subversion 1.7 or greater working copy rooted at '/root/eAthena'. Please upgrade your Subversion client to use this working copy. make[1]: *** [svnversion.h] Error 1 make[1]: Leaving directory `/root/eAthena/src/common' make: *** [common_sql] Error 2
  5. then if i found rename what should i do now??
  6. This is my atcommand.c /*========================================== * @rura, @warp, @mapmove *------------------------------------------*/ ACMD_FUNC(mapmove) { char map_name[MAP_NAME_LENGTH_EXT]; unsigned short mapindex; short x = 0, y = 0; int m = -1; nullpo_retr(-1, sd); memset(map_name, '\0', sizeof(map_name)); if (!message || !*message || (sscanf(message, "%15s %hd %hd", map_name, &x, &y) < 3 && sscanf(message, "%15[^,],%hd,%hd", map_name, &x, &y) < 1)) { clif_displaymessage(fd, "Please, enter a map (usage: @warp/@rura/@mapmove <mapname> <x> <y>)."); return -1; } if( battle_config.pvpmode_nowarp_cmd && sd->state.pvpmode ) { clif_displaymessage(sd->fd,"You can not use @go while on PVP Mode."); return -1; } mapindex = mapindex_name2id(map_name); if (mapindex) m = map_mapindex2mapid(mapindex); if (!mapindex) { // m < 0 means on different server! [Kevin] clif_displaymessage(fd, msg_txt(1)); // Map not found. return -1; } if ((x || y) && map_getcell(m, x, y, CELL_CHKNOPASS)) { //This is to prevent the pc_setpos call from printing an error. clif_displaymessage(fd, msg_txt(2)); if (!map_search_freecell(NULL, m, &x, &y, 10, 10, 1)) x = y = 0; //Invalid cell, use random spot. } if (map[m].flag.nowarpto && !pc_has_permission(sd, PC_PERM_WARP_ANYWHERE)) { clif_displaymessage(fd, msg_txt(247)); return -1; } if (sd->bl.m >= 0 && map[sd->bl.m].flag.nowarp && !pc_has_permission(sd, PC_PERM_WARP_ANYWHERE)) { clif_displaymessage(fd, msg_txt(248)); return -1; } if( !pc_get_group_level(sd) && DIFF_TICK(gettick(),sd->canlog_tick) < 5000 ) { clif_displaymessage(fd,"@warp cannot be issued since you were into battle recently"); return -1; } if (pc_setpos(sd, mapindex, x, y, CLR_TELEPORT) != 0) { clif_displaymessage(fd, msg_txt(1)); // Map not found. return -1; } if( pc_isdead(sd) ) { clif_displaymessage(fd, "You cannot use this command when dead."); return -1; } clif_displaymessage(fd, msg_txt(0)); // Warped. return 0; }
  7. dont use GRF use the thor generator to create patch http://www.axwebsolutions.com/knowledgebase.php?action=displayarticle&id=1
  8. yup you can use lower client version or some 2012 client without click delay
  9. you cant fix click delay but you can avoid it
  10. i found only char what im going to edit to this??? can you post a Screen Shot of yours? BUMP!!
  11. what is your emulator that you are using and what rev what client are you using?? need more info to help you out double posting http://rathena.org/board/topic/71110-a-little-problem/
  12. download the right lua for your client
  13. sorry i got disconnected in my wifi pm me if you are on
  14. what is your messenger ill add you then i help you to that
  15. try this http://rathena.org/board/topic/66633-afk/
  16. what do you mean adding delay in @afk or adding @afk itself command?
  17. the problem is your lua files check your lua files
  18. What do you mean renaming char table to 1?? how to make it work with the latest client? 2012-04-18 or 2012-05-15??
  19. try this http://rathena.org/board/topic/61836-warp-go-damage-delay/
  20. send me your ym ill teach you how
×
×
  • Create New...