Jump to content

Fratini

Members
  • Posts

    153
  • Joined

  • Last visited

Everything posted by Fratini

  1. I'll try and come back later, thanks! Edit:Thank you!!!
  2. Hi, I'm having this problem which I tried a lot to solve ( Differents Patches with NEMO and testing for quite a while... ) and the problem still unsolved... The problem is: Trying to open the Hexed and it didn't show anything... It loads, but then nothing happens... With Windows 7, I could open with no problem, but after I install Windows 10, I can't open the Hexed... I tried using the 2015-10-29 version but nothing, again... Thank you for your time Edit: I just realized that I post in the wrong section... Sorry about that
  3. Primeiramente, antes do aviso "failed at part 1" aconteceu um erro diferente (Culpa do Antivirus como vc tinha dito) e eu desativei. Porém criou esse erro. Before the warning "failed at part 1" it happened a different error (Because of the Antivirus, like you sad) and I disable it. But a new error arrived T.T That one xD Atualizei e resolveu! Ps: Helly e Bruno, obrigado pelos Replies !! Ragnarok Online ainda vive!! Helly and Bruno, thank you for the Replies !! Ragnarok Online still lives!!
  4. Thank you @Daegaladh =)
  5. Hello =D Im trying to diff the hexed 2015-11-04a with NEMO, but when I mark any patch the following error appear: ] When my OS was Windows 7, it applies normally, but I change to Windows 10 and now I can't diff I tried to execute with Administrator but the error still appears... Thank you for your time
  6. Bom dia, Estou tentando diffar pelo NEMO o hexed 2015-11-04a, porém quando marco qualquer Patch, ocorre o seguinte erro: ] O erro é para qualquer Patch. Tentei vários. Quando eu utilizava Windows 7, Diffava com NEMO sem problemas. Agora com o Windows 10 instalado, ocorre esse tipo de erro. Já tentei executar como Administrador e o erro persiste... Obrigado pela atenção Edit: Atualizei o NEMO e resolvi o problema. Link do NEMO atualizado: https://github.com/MStr3am/NEMO Recomendo deixar salvo no seu PC esse link
  7. set .@comp,getvar(Class,killedrid); if(.@comp>=4054 && .@comp<=4079) dispbottom "You killed a 3rd Class Player",0xFF0000; This excludes expanded Classes and 3rd Class Babies. I think it could be optimized but with the other variables that I know, I never tested, so with this method it's more secure.
  8. Thank you a lot!!!
  9. Hi, I need to change the time that it takes for the item to disappear from the groud to 20 minuts. But I'm not sure if it can cause trouble in the future Thank you
  10. You should test before comes here, but yes
  11. In the mittle of two squares? I don't think you can do that
  12. I already provided. Go to my first post. Click in the link of Azeroth and download it.
  13. Do you know how to make a .grf file? Search and add the Lua Files from kdata.grf
  14. Packet Version: 55 Pick the update packet_db from rAthena Github
  15. Tha's a very nice feature!! Thank you!! But, It's trusted? Someone who is currently using can make a review? Edit: Going to use Wireshark and check if it's safe
  16. Fratini

    Help pls?

    Use the tool 'Search'. You'll find the best
  17. My knowledge in source is not so good [im an Engeneer, goddammit xD] but I'll try to help using logic. I don't know if it's right. Here we go! You declare output[CHAT_SIZE_MAX] with char and then uses it to store base and job level, which is int64 (I guess) in sprintf: I suggest you declare another variable int64 and store those in another line like: int64 output2[CHAT_SIZE_MAX]; sprintf(output2, "Lvl: %d/%d",pl_sd->status.base_level, pl_sd->status.job_level); and let the first line like this: sprintf(output, "Name: %s | Job: %s", pl_sd->status.name, job_name(pl_sd->status.class_)); I never did this before. Sorry if I'm wrong. Good Luck!!
  18. Man, if you're using rAthena updated, I suggest you use 2015-11-04a Ragexe. It have support in rAthena and is easy do diff. If you want help, just click spoiler below. Again, it's easy:
  19. Thank you @Corrosive for reply! I'll test it and edit this post after, with results.
  20. We need more information. What version of rAthena are you using? Which hexed version date (Like 2015-11-04 [Which I recommend] ) you're currently using?
  21. Hi buddy! Have you compile your server with the file src/common/mmo.h edited like: #ifndef PACKETVER #define PACKETVER 20100730 If yes, you can solve your problem by commenting PACKET_OBFUSCATION in src/config/core.h /// Comment to disable the official packet obfuscation support. /// When enabled, make sure there is value for 'packet_keys' of used packet version or /// defined 'packet_keys_use' in db/[import/]packet_db.txt. /// This requires PACKETVER 2011-08-17 or newer. //#define PACKET_OBFUSCATION After that you have to compile again What version of rAthena are you using?
  22. Doram, Roulette, bank, support to hexed and other things, constantly making updates to correct issues... Do you want more? I think the problem of a human is aways the desire of more... Is aways more =\ Maybe, but hercules is more advanced in... and i like rA, love rA...not herc I have no knowledge about the operation and qualities of hercules. I'll read about after this
  23. OnClock<hour><minute>: OnMinute<minute>: OnHour<hour>: On<weekday><hour><minute>: OnDay<month><day>: This will execute when the server clock hits the specified date or time. Hours and minutes are given in military time. ('0105' will mean 01:05 AM). Weekdays are Sun,Mon,Tue,Wed,Thu,Fri,Sat. Months are 01 to 12, days are 01 to 31. Remember the zero. By script_commands.txt at doc/
  24. Hi! The script check if the map where the user died is in the table 'maps_nod'. It returns 1 if the map is there. The 'var1' is INT and has 1 in all maps. query_sql "SELECT `var1` FROM `maps_nod` WHERE `map_name`='"+strcharinfo(3)+"'",@map; if(!@map){ I tried using only strings before but still didn't work. query_sql "SELECT `map_name` FROM `maps_nod` WHERE `map_name`='"+strcharinfo(3)+"'",@map$; if(!@map$){ I don't know what else I can do =\ Thank you for your time Edit: After a LONG search and research through google, rAthena I found nothing useful. I start to search for new commands that I didn't know in script_commands and BAM! Fixed For those who have or had the same problem... Use escape_sql(<value>): *escape_sql(<value>) Converts the value to a string and escapes special characters so that it is safe to use in query_sql(). Returns the escaped form of the given value. Example: .@name$ = "John's Laptop"; .@esc_str$ = escape_sql(.@name$); // Escaped string: John\'s Laptop In my case will be like: query_sql "SELECT `map_name` FROM `maps_nod` WHERE `map_name`='"+escape_sql(strcharinfo(3))+"'",@map$; if(!@map$){ Or I could do like: set @str$,strcharinfo(3); query_sql "SELECT `map_name` FROM `maps_nod` WHERE `map_name`='"+escape_sql(@str$)+"'",@map$; if(!@map$){
×
×
  • Create New...