Jump to content

quesoph

Members
  • Posts

    210
  • Joined

  • Last visited

Everything posted by quesoph

  1. use different setup.exe or learn to search.
  2. @Mr BrycE try to buy your own domain and hosting. i think if your site is using a subdomain this addon will not work. ( happens to me with ip-board with facebook login. )
  3. where is your inter_athena.conf? maybe you have a dynamic ip ( every time you reconnect your LAN connection Ip address changes. ) change all 127.0.0.1 to 112.205.248.191 or your WAN IP
  4. ../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 Check your renewal.h file.
  5. ^ that command is already implemented.
  6. Glad it worked for you. hehe.. goodluck.
  7. i have updated the script above. please try it again. i have tested it again. and it should work flawlessly.
  8. i dunno why setriding doesn't work with that script.. hmm.. try to use this.. //===== rAthena Script ======================================= //= Universal Rental NPC //===== By: ================================================== //= rAthena Dev Team //===== Current Version: ===================================== //= 1.3a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= A Free PecoPeco and Falcon Breeder //===== Additional Comments: ================================= //= 1.1 FIXED checkriding/cart/falcon funcs [Lupus] //= 1.2 Added Rebirth/Advanced Class support [Mass Zero] //= 1.3 Simplified the checks of job [silentdragon] //= 1.3a Fixed a Typo Error. [samuray22] //= Thanks to ~AnnieRuru~. //= 1.4 Optimized Script. No need for 50 million Labels. [spre] //============================================================ prontera,124,201,1 script Universal Rental Npc 726,{ mes "[universal Rental Npc]"; mes "Hi, here you can rent Carts, Falcons or Pecopecos."; next; switch(select("Cart:Falcon:Peco:Warg:Mado")) { case 1: if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) { setcart; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 2: if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) { setfalcon; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 3: if (checkriding() == 0 && getskilllv("KN_RIDING")>0 && Class == 4060 || Class == 4054 || Class == 4066 || Class == 4073) { atcommand "@mount"; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 4: //ward if (BaseJob != Job_Archer && BaseClass == Job_Archer && countitem(6124) == 0) { getitem 6124,1; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 5: // mado if (BaseJob != Job_Merchant && BaseClass == Job_Merchant && checkriding() == 0 && getskilllv("NC_MADOLICENCE")>0 && Class == 4064 || Class == 4058) { atcommand "@mount"; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } } }
  9. I have provided a 3 different setup.exe This may solve client issues. as it solved mine. setup$.exe is the file i use for 2011-03-15a. RO1.7z
  10. //===== rAthena Script ======================================= //= Universal Rental NPC //===== By: ================================================== //= rAthena Dev Team //===== Current Version: ===================================== //= 1.3a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= A Free PecoPeco and Falcon Breeder //===== Additional Comments: ================================= //= 1.1 FIXED checkriding/cart/falcon funcs [Lupus] //= 1.2 Added Rebirth/Advanced Class support [Mass Zero] //= 1.3 Simplified the checks of job [silentdragon] //= 1.3a Fixed a Typo Error. [samuray22] //= Thanks to ~AnnieRuru~. //= 1.4 Optimized Script. No need for 50 million Labels. [spre] //============================================================ prontera,124,201,1 script Universal Rental Npc 726,{ mes "[universal Rental Npc]"; mes "Hi, here you can rent Carts, Falcons or Pecopecos."; next; switch(select("Cart:Falcon:Peco:Warg:Mado")) { case 1: if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) { setcart; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 2: if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) { setfalcon; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 3: if (BaseJob != Job_Swordman && BaseClass == Job_Swordman && checkriding() == 0 && getskilllv("KN_RIDING")>0) { setriding; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 4: //ward if (BaseJob != Job_Archer && BaseClass == Job_Archer && countitem(6124) == 0) { getitem 6124,1; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 5: // mado if (BaseJob != Job_Merchant && BaseClass == Job_Merchant && checkriding() == 0 && getskilllv("NC_MADOLICENCE")>0 && Class == 4064 || Class == 4058) { atcommand "@mount"; close; } else { mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } } } Tested no errors found.
  11. This if possible. Vending System by Lilith
  12. getitem .ItemID,10; //Change the [5] to the amount you wish to hand out. getitem .ItemID,10; just replace .ItemID to whatever item you want.. eg: getitem 607,10; // 10pcs yggdrasillberry
  13. I have already used a newly checked out server and still crash. Maybe this is caused by the delay in skill.c this things pop out. [Error]: Memory manager: args of aFree 0x0xb26e5bcc is invalid pointer db.c line 1053 and when i reloadscript mapserver crashes. Thank you for your help Lighta.
  14. http://rathena.org/board/topic/61437-rules-notice-before-logging-in/page__fromsearch__1
  15. 20110211. @edit do not use this. use Earthlingz post.
  16. Thank you for your advice. i will try to use another fresh server.. another error: [Error]: Memory manager: args of aFree 0x0xb26e5bcc is invalid pointer db.c line 1053
  17. i've already updated my "glibc" just to be sure. i haven't modify those files.. so i don't know where to start. Thank you so much for your help. @edit i forgot to indicate in the first post that i have edited this: status.c #if REMODE static inline unsigned short status_base_matk_min(const struct status_data* status, int lvl) #else static inline unsigned short status_base_matk_min(const struct status_data* status) #endif { #if REMODE //Renewal MATK Formula /* this line>> */ return status->int_+(status->int_/7)*(status->int_/7); //return status->int_+(status->int_/2)+(status->dex/5)+(status->luk/3)+(lvl/4); #else //Original Min MATK Formula return status->int_+(status->int_/7)*(status->int_/7); #endif } i guess this cause the server to crash?. or not. lol
  18. If the server generates it again i will post it here. Thanks @Lighta here: [New Thread 22527] Cannot access memory at address 0x4b Cannot access memory at address 0x4b Cannot access memory at address 0x4b Cannot access memory at address 0x4b Reading symbols from /lib/ld-linux.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/ld-linux.so.2 Cannot access memory at address 0x4b Core was generated by `./map-server_sql'. Program terminated with signal 11, Segmentation fault. #0 0x08067a7e in map_addblock (bl=0xadc398ac) at map.c:317 317 if (bl->next) bl->next->prev = bl; Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.7.el6_0.5.i686 [New Thread 6775] Cannot access memory at address 0x4b Cannot access memory at address 0x4b Cannot access memory at address 0x4b Cannot access memory at address 0x4b Reading symbols from /lib/ld-linux.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/ld-linux.so.2 Cannot access memory at address 0x4b Core was generated by `./map-server_sql'. Program terminated with signal 11, Segmentation fault. #0 0x0819df3b in _mfree (ptr=0xb25502cc, file=0x81b9ebf "de.txt", line=1053, func=0x81d0ace "le") at malloc.c:416 416 } else if(*(long*)((char*)head + sizeof(struct unit_head) - sizeof(long) + head->size) != 0xdeadbeaf) { Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.7.el6_0.5.i686 #0 _mfree (ptr=0xb25502cc, file=0x81b9ebf "db.c", line=1053, func=0x81d0ace "db_release_data") at malloc.c:387 head_large = 0xb25502b4 head = 0xb25502c0 #1 0x0819c412 in db_obj_remove (self=0xb76df1e4, key=..., out_data=0x0) at db.c:1882 db = 0xb76df1e4 node = 0xdd467f0 hash = 114 c = <value optimized out> retval = 1 #2 0x08111a73 in skill_blockpc_end (tid=1027, tick=3088295291, id=2000166, data=490) at skill.c:14858 i = <value optimized out> cursor = <value optimized out> sd = 0xdf51010 cd = <value optimized out> #3 0x08199e07 in do_timer (tick=3088295311) at timer.c:371 tid = 1027 diff = -20 __FUNCTION__ = "do_timer" #4 0x08197105 in main (argc=1, argv=0xbfa9d5c4) at core.c:299 next = <value optimized out> I am missing this: glibc-2.12-1.7.el6_0.5.i686 ? in my server..
  19. Svn: 15832 Customizations: Minor skill delay edit on skill.c, and minor skill damage edit on battle.c #0 0x08067a7e in map_addblock (bl=0xadc398ac) at map.c:317 m = 635 x = 59 y = 163 pos = 767 #1 0x080e23d5 in mob_spawn (md=0xadc398ac) at mob.c:917 i = <value optimized out> tick = 3059853599 c = <value optimized out> __FUNCTION__ = "mob_spawn" #2 0x080cf4e6 in npc_parse_mob2 (mob=0xaeb1003c) at npc.c:2771 md = <value optimized out> i = 2 #3 0x0806a57c in map_spawnmobs (m=635) at map.c:2223 i = <value optimized out> k = 66 #4 0x08099bb6 in clif_parse_LoadEndAck (fd=9, sd=0xe5c07b0) at clif.c:8590 No locals. #5 0x0808a13b in clif_parse (fd=9) at clif.c:15522 cmd = 125 packet_ver = <value optimized out> packet_len = 2 err = 135891111 sd = 0xe5c07b0 pnum = <value optimized out> #6 0x08198d31 in do_sockets (next=50) at socket.c:804 rfd = {__fds_bits = {512, 0 <repeats 31 times>}} timeout = {tv_sec = 0, tv_usec = 11687} ret = 0 i = <value optimized out> #7 0x0819710d in main (argc=1, argv=0xbfa4a4c4) at core.c:300 next = <value optimized out>
×
×
  • Create New...