Jump to content

Neffletics

Members
  • Posts

    149
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Neffletics

  1. Hi, Elin, it works fine on my end. Are you using an up-to-date copy of rAthena?
  2. Turn the debugging mode on so you can get the accurate reason why you're getting that message.
  3. Sir pls can you send to me your svn that working in that diff . Please sir i need it badly please please please sir please I just read your response. I am sorry but I've already reverted my copy of rAthena to base.
  4. I've tried it, it also doesn't work on my end. Maybe you should wait for the updated version.
  5. Can you send me the copy of your server without these patch.
  6. If you really need it, you should extract it yourself~ Don't just leech everything, you also have to do your part.
  7. In your char-athena and map-athena conf, you change the IP to 127.0.0.1 and change also the IP in your subnet-athena.
  8. Where did you get this diff btw? Can you send me the original post?
  9. Read this http://www.markusbe.com/2009/12/how-to-read-a-patch-or-diff-and-understand-its-structure-to-apply-it-manually/
  10. //===== rAthena Script ======================================= //= Reset NPC //===== By: ================================================== //= rAthena Dev Team //===== Current Version: ===================================== //= 1.3 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Resets skills, stats, or both. //===== Additional Comments: ================================= //= 1.0 First Version //= 1.1 Optimized for the greater good. [Kisuka] //= 1.2 Cleaning [Euphy] //= 1.3 All statuses removed upon skill reset. [Euphy] //============================================================ prontera,150,193,4 script Reset Girl 124,{ .@ResetStat = 5000; // Zeny for stat reset .@ResetSkill = 5000; // Zeny for skill reset .@ResetBoth = 9000; // Zeny for resetting both together mes "[Reset Girl]"; mes "You need premium reset stone each in resetting your skills and Stats"; mes "Reset Stats: Premium Stone + " + callfunc("F_InsertComma", .@ResetStat) + "z"; mes "Reset Skills: Premium Stone + " + callfunc("F_InsertComma", .@ResetSkill) + "z"; mes "Reset Both: 2x Premium Stone + " + callfunc("F_InsertComma", .@ResetBoth) + "z"; mes "Please select the service you want:"; next; switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel")) { case 1: mes "[Reset Girl]"; if (countitem(6320) < 1) goto NoStone; if (Zeny < .@ResetSkill) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetSkill; delitem 6320,1; sc_end SC_ALL; resetskill; mes "There you go!"; close; case 2: mes "[Reset Girl]"; if (countitem(6320) < 1) goto NoStone; if (Zeny < .@ResetStat) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetStat; delitem 6320,1; resetstatus; mes "There you go!"; close; case 3: mes "[Reset Girl]"; if (countitem(6320) < 2) goto NoStone2; if (Zeny < .@ResetBoth) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetBoth; delitem 6320,2; sc_end SC_ALL; resetskill; resetstatus; mes "There you go!"; close; case 4: close; } NoStone: mes "[Reset Girl]"; mes "You must have a ^FF3355Premium Reset Stone^000000 to continue."; close; NoStone2: mes "[Reset Girl]"; mes "You must have 2 ^FF3355Premium Reset Stones^000000 to continue."; close; } Here you go... Requires 2 stone, changed the welcome message and edited the requirements.
  11. Change item_zeny to itemid_zeny and item_cash to itemid_cash.
  12. Just send him your server files. He'll apply it for you. I'll also send him a pm with regards to your concern.
  13. Open char_athena.conf, map_athena.conf and subnet_athena.conf char_athena.conf char_ip: 127.0.0.1 map_athena.conf map_ip: 127.0.0.1 subnet_athena.conf subnet: 255.0.0.0:127.0.0.1:127.0.0.1 Then change your clientinfo.xml IP Address to 127.0.0.1 as well.
  14. //===== rAthena Script ======================================= //= Reset NPC //===== By: ================================================== //= rAthena Dev Team //===== Current Version: ===================================== //= 1.3 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Resets skills, stats, or both. //===== Additional Comments: ================================= //= 1.0 First Version //= 1.1 Optimized for the greater good. [Kisuka] //= 1.2 Cleaning [Euphy] //= 1.3 All statuses removed upon skill reset. [Euphy] //============================================================ prontera,150,193,4 script Reset Girl 124,{ .@ResetStat = 5000; // Zeny for stat reset .@ResetSkill = 5000; // Zeny for skill reset .@ResetBoth = 9000; // Zeny for resetting both together mes "[Reset Girl]"; mes "I am the Reset Girl."; mes "Reset Stats: " + callfunc("F_InsertComma", .@ResetStat) + "z"; mes "Reset Skills: " + callfunc("F_InsertComma", .@ResetSkill) + "z"; mes "Reset Both: " + callfunc("F_InsertComma", .@ResetBoth) + "z"; mes "Please select the service you want:"; next; switch(select("^FF3355Reset Skills:Reset Stats:Reset Both^000000:Cancel")) { case 1: mes "[Reset Girl]"; if (countitem(6320) < 1) goto NoStone; if (Zeny < .@ResetSkill) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetSkill; delitem 6320,1; sc_end SC_ALL; resetskill; mes "There you go!"; close; case 2: mes "[Reset Girl]"; if (countitem(6320) < 1) goto NoStone; if (Zeny < .@ResetStat) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetStat; delitem 6320,1; resetstatus; mes "There you go!"; close; case 3: mes "[Reset Girl]"; if (countitem(6320) < 1) goto NoStone; if (Zeny < .@ResetBoth) { mes "Sorry, you don't have enough Zeny."; close; } Zeny -= .@ResetBoth; delitem 6320,1; sc_end SC_ALL; resetskill; resetstatus; mes "There you go!"; close; case 4: close; } NoStone: mes "[Reset Girl]"; mes "You must have a ^FF3355Premium Reset Stone^000000 to continue."; close; } Here... just edit the prices on the upper part of the script.
  15. 607,100 //Yggdrasil Berry 608,100 //Yggdrasil Seed Add this to db/mob_item_ratio.txt That'll turn ygg berries and seeds' drop rate to 1x regardless if your server is 9999999999999k/9999999999999k/9999999999999k
  16. Rayleigh, nope. You have to manually apply the patches to the src of your server. (the one with + symbols)
  17. Try commenting out the char server IP and map server IP in conf. So the server will be forced to use localhost.
  18. prontera,147,174,3 script Freebies 90,{ set .@n$, "[Seyra]"; setarray .@rwd[0],2115,1,2357,1,2421,1,2524,1; // Rewards: <item id>,<item amount> if ( #NewbieGift > 0) { mes .@n$; mes "I'm sorry, the rewards are exclusively for new players."; close; } mes .@n$; mes "Welcome! Here are some free gifts"; mes "for newcomers:"; for ( set .@i, 0; .@i < getarraysize(.@rwd); set .@i, .@i + 2 ) mes .@rwd[.@i+1] + " x " + getitemname(.@rwd[.@i]); close2; set #NewbieGift, 1; setd "$" + .@lip$ + "_NG", getd("$" + .@lip$ + "_NG") + 1; for ( set .@i, 0; .@i < getarraysize(.@rwd); set .@i, .@i + 2 ) getitem .@rwd[.@i], .@rwd[.@i+1]; end; OnInit: waitingroom "Newbie Gift!",0; end; } Try this one...
  19. Hmmm... better reinstall your OS and follow the guide again. I just followed the guide before (2 years ago, I think) and it worked fine.
  20. Nope, I didn't add anything. It happens randomly for no reason. I am using a clean data folder, nothing's changed except for clientinfo.xml
  21. Hello, everyone! I keep getting Gravity error for no reason. Here's the crash log. Maybe someone with great client knowledge out there can help~ Thank you so much! Module Name: C:\Users\Administrator\Desktop\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe Time Stamp: 0x4c52288f - Fri Jul 30 09:19:11 2010 Exception Type: 0xc0000005 0x00719032 C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x00711e56 C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x006cf7d1 C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x0062239e C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x00622e1e C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x0062453f C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x005e3ce6 C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x005f65ca C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x005a480c C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x005a4796 C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x007030f3 C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x0071762d C:\Users\Administrator\Desktop\Romeo\SolaceRO Files\Test Client_Pre-Renewal\SolaceRO_Test.exe 0x7515337a C:\Windows\syswow64\kernel32.dll 0x76ef9882 C:\Windows\SysWOW64\ntdll.dll 0x76ef9855 C:\Windows\SysWOW64\ntdll.dll eax: 0x74616546 ebx: 0x00000073 ecx: 0x74616546 edx: 0x7fffffff esi: 0x7ffffffe edi: 0x00797dc0 ebp: 0x0018ffec esp: 0x0018ffdc stack 0018ffdc - 001903dc 0018FFDC : 4D 75 71 00 00 E0 FD 7E 00 00 00 00 00 00 00 00 0018FFEC : 00 00 00 00 00 00 00 00 4D 75 71 00 00 E0 FD 7E 0018FFFC : 00 00 00 00 41 63 74 78 20 00 00 00 01 00 00 00 0019000C : 0C 33 00 00 DC 00 00 00 00 00 00 00 20 00 00 00 0019001C : 00 00 00 00 14 00 00 00 01 00 00 00 07 00 00 00 0019002C : 34 00 00 00 7C 01 00 00 01 00 00 00 00 00 00 00 0019003C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0019004C : 02 00 00 00 4E EF 26 1A 98 02 00 00 44 00 00 00 0019005C : E0 02 00 00 60 02 00 00 00 00 00 00 BA 71 32 F3 0019006C : 40 05 00 00 4A 00 00 00 8C 05 00 00 1E 03 00 00 0019007C : 00 00 00 00 5B 49 59 2D AC 08 00 00 32 00 00 00 0019008C : E0 08 00 00 00 03 00 00 00 00 00 00 CD EA CE 32 0019009C : E0 0B 00 00 42 00 00 00 24 0C 00 00 36 03 00 00 001900AC : 00 00 00 00 C8 5F 50 38 5C 0F 00 00 5E 00 00 00 001900BC : BC 0F 00 00 68 03 00 00 00 00 00 00 44 05 28 B1 001900CC : 24 13 00 00 56 00 00 00 7C 13 00 00 98 03 00 00 Launch Info 00A4 002C 002C 002C 002C 002C 002C 002C 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 Job : Novice
  22. http://filehippo.com/download_visualc_2010_express_edition/ Use this instead.
  23. Did you customize your Thor patcher? If yes, can we see your config?
  24. Hi, I was experimenting with my client earlier and with the latest rAthena, it doesn't allow me to use packet version 24 or older. (I know rAthena doesn't support old sakexe anymore) But is there a way to bypass this? P.S. I've changed my mmo.h and recompiled (clean + rebuild)
×
×
  • Create New...