Jump to content

Brynner

Members
  • Posts

    1979
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by Brynner

  1. 2012-06-18aRagexeRE use iteminfo.lub located on System\itemInfo.lub and for ShadowTable http://rathena.org/board/topic/69684-client-dates-supportfixes/
  2. Error 1 error C2065: 'sc' sc = status_get_sc(sd); if (sc->data[sC_TRICKDEAD]) { Error 5 error C2223: left of '->data' must point to struct/union if (sc->data[sC_TRICKDEAD]) { i got these error by the way problem solve. just remove the sc = status_get_sc(sd); and simply change the if (sc->data[sC_TRICKDEAD]) to if (sd->sc.data[sC_TRICKDEAD]) thanks for showing how it works.
  3. you can try this. http://rathena.org/board/topic/71389-afk-with-afk-hat/
  4. thank you it works now.
  5. make sure you change the client version on src\common\mmo.h
  6. 2011-11-22 client use blue ghost setup.exe i have tried it, its keep reset. dont know why just use the one that are compatible to that version. there is already a topic regarding on this. just use search engine.
  7. how can i disable using @warp and @go command if you are under status of trickdead? the novice can use Trick Dead skill and they can use @warp and @go commands.i just want to disable it. they should be back to normal status to use the @warp and @go commands. thanks in advance.
  8. 2011-11-22 client use blue ghost setup.exe
  9. Error 4 error C2059: syntax error : ',' when i clicked it. it bring me here. sc_start(&sd->bl, SC_TRICKDEAD, 100, 1, 1000); //Duration does not matters as Trick Dead is "eternal"
  10. what client version are you using? 20110315 thanks for replying fast try to check it here. http://rathena.org/board/topic/69566-lua-files-for-older-version-that-you-need-2011-12-14-below/ you can use the 2011-03-16_lua file. if your client is diff with load lua first. Thank you Arc Angeling !!!! Problems SOLVED !!!!!!! THANKS AGAIN mark this topic solve.
  11. im getting error fox this line sc_start(&sd->bl, SC_TRICKDEAD, 100, 1, 1000); //Duration does not matters as Trick Dead is "eternal" Error 4 error C2059: syntax error : ',' int atcommand_sleep(const int fd, struct map_session_data* sd, const char* command, const char* message) { if(map_flag_gvg(sd->bl.m) || map_flag_vs(sd->bl.m)){ clif_displaymessage(fd, "you can't...."); return -1; } if(!battle_config.prevent_logout || DIFF_TICK(gettick(), sd->canlog_tick) > 10) { if(sd->sc.opt1 != 0 && sd->sc.opt1 != OPT1_SLEEP){ clif_displaymessage(fd, msg_txt(707)); //Please refrain from trying to abuse this command. return -1; } if(sd->sc.opt1 != OPT1_SLEEP){ sc_start(&sd->bl, SC_TRICKDEAD, 100, 1, 1000); //Duration does not matters as Trick Dead is "eternal" sd->sc.opt1 = OPT1_SLEEP; sc_start(&sd->bl,SC_COMA,100,1,skill_get_time2(185,1)); clif_displaymessage(fd, msg_txt(705)); //You are now asleep. } else { sd->sc.opt1 = 0; clif_emotion(&sd->bl,45); status_change_end(&sd->bl, SC_TRICKDEAD, -1); sc_start(&sd->bl,SC_COMA,100,1,skill_get_time2(185,1)); clif_displaymessage(fd, msg_txt(706)); //You are now awake. } clif_changeoption(&sd->bl); return 0; } clif_displaymessage(fd, msg_txt(707)); //Please refrain from trying to abuse this command. return -1; }
  12. try to back read. it will help you a lot. those common problem for these client version.
  13. that file was located in your Ragnarok Folder.
  14. what client version are you using? 20110315 thanks for replying fast try to check it here. http://rathena.org/board/topic/69566-lua-files-for-older-version-that-you-need-2011-12-14-below/ you can use the 2011-03-16_lua file. if your client is diff with load lua first.
  15. still have no update on your svn link regarding on the new weediffgen plugins?
  16. what client version are you using?
  17. you can also try this but this is an outdated script. http://rathena.org/board/topic/57262-anti-corruption-a-step-taken-to-stop-corrupt-gms/
  18. on your src\config\renewal.h /// game renewal server mode /// (disable by commenting the line) /// /// leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL just add // if you want to disable renewal features to make it pre-re
  19. just disable renewal config to make it pre-re
  20. have you already checked this topic? http://rathena.org/board/topic/81022-ragexe-2013-03-20-semi-diffed/
  21. is that all?thanks i'll try it later when i got home.
  22. // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 make sure you add that at the end of packetdb that you are using.
  23. you can try this. for item trading http://rathena.org/board/files/file/2774-announce-trades-permission/ and for summoning monster. http://rathena.org/board/files/file/2771-announce-monster-spawn-permission/ it will announce if there is a trade happening. both item and zeny on a gm account. and also for summoning monster. it will announce the location monster name and how many monsters.
  24. how can i make the treasure chest still remain even the guild master not claiming it unless the castle has been captured by the other guild? for example: woe on prontera every monday. but there treasure chest respawn is every day. so i have 6days to get all treasure chest everyday. and if i forget to collect the castle drop on tuesday. and the castle drop will respawn on wed. so it would be double because i forgot to collect it yesterday. and i didn't collect before the woe hours started. the treasure castle will be gone. thanks in advance.
  25. try to do a back read the solution was already posted.
×
×
  • Create New...