Jump to content

Sapito Sucio

Members
  • Posts

    188
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Sapito Sucio

  1. Replace (map[m].flag.gvg_castle || map[m].flag.gvg_te_castle) to (mapdata->flag[MF_GVG_CASTLE] || mapdata->flag[MF_GVG_TE_CASTLE])
  2. If you want a quick and dirty fix, you could delete that line on msgstringtable.txt
  3. Some maps are being upgraded and old clients cant read them, maybe it's your case
  4. Yo estoy usando el 2021-11-17 y todo va de lujo
  5. Yeah, it doesn't work, it doesn't even load the DB files for me ?
  6. Did you update the PACKETVER ? #define PACKETVER 20211103
  7. its never late to explain how to fix things, thx
  8. Try this announce ""+strcharinfo(0)+" "+BaseLevel+"/"+JobLevel+" "+jobname(Class)+" : is looking for Party Members",bc_all,0xFF5500;
  9. it says 0b but the download goes through anyway? does it patch ok?
  10. Hello there, basically title. I just set up the web service from vstumpf/rathena and I got the emblems working, but when I click on the Twitter button nothing happens, the console is not showing anything, so I suppose is client's fault, no? :c 2021-11-17_Ragexe_1637052357_patched_UiKX8fJNt1.mp4 this is the ExternalSettings_kr.lub AssistAddr = "192.168.0.195:8888" ----------------------------------------- -- Old client compatibility [Secret] -- (Just change the "AssistAddr" to your IP) ----------------------------------------- Url = { TwitterUrl = 'http://192.168.0.195:8888' } AccountLinkedUserDataUrl = { Save = 'http://192.168.0.195:8888/userconfig/save', Load = 'http://192.168.0.195:8888/userconfig/load' } TwitterDataUrl = { Auth = 'http://192.168.0.195:8888/twitter/user-auth', Upload = 'http://192.168.0.195:8888/twitter/upload' } EmblemDataUrl = { Upload = 'http://192.168.0.195:8888/emblem/upload', Download = 'http://192.168.0.195:8888/emblem/download' } I have searched over here, hercs and google but I don't seem to find the solution
  11. You're looking for this option on WARP I don't suggest you going below 100, if you talk to a dialogless npc the player character will walk towards the NPC.
  12. Sorry but Thor it's like almost 10 years old or more, then the https connections were not like a standard thing like nowadays. Thor can't handle https, just like that, you need to drop https support in your patch hosting in order to thor to connect to the URL, I just figured it out like a day or two. For example, svn.code.sf.net/p/froggyro/patches/plist.txt, as you can see it's not a secure connections (https), thus my thor can reach to this point and continue. If you don't want to drop https then you need to change patcher, I can recommend rpatchur, It handles both https and http and it uses thor patch scheme
  13. Hello there! I'm writing this code that will give prizes to the top 3 MvP killers Should be triggered every monday, but for testing purposes I picked OnMinute1 OnInit: OnMinute1: L_give: announce "Entregando premios .",0; query_sql("Select ragnarok.char_reg_num_db.char_id, ragnarok.char.name, ragnarok.char_reg_num_db.value FROM ragnarok.char_reg_num_db INNER JOIN ragnarok.char ON ragnarok.char.char_id=ragnarok.char_reg_num_db.char_id WHERE ragnarok.char_reg_num_db.`key`='MvP' ORDER BY ragnarok.char_reg_num_db.value DESC LIMIT 3", .@chrid); // Selects TOP 3 MVP query_sql "DELETE FROM char_reg_num_db WHERE char_reg_num_db.`key`='USERAURA' OR char_reg_num_db.`key`='USERAURA1'"; .@existeonel = query_sql ("Select exists(SELECT ragnarok.char_reg_num_db.char_id FROM ragnarok.char_reg_num_db WHERE ragnarok.char_reg_num_db.char_id=150003 AND ragnarok.char_reg_num_db.`key`= 'USERAURA')"); //DELETE Previous Prize for (set @i,0; @i < 3; set @i,@i+1) { .@existeonel = query_sql ("Select exists(SELECT ragnarok.char_reg_num_db.char_id FROM ragnarok.char_reg_num_db WHERE ragnarok.char_reg_num_db.char_id=150003 AND ragnarok.char_reg_num_db.`key`= 'USERAURA')"); mes "Encontrado: "+.@existeonel+""; if (.@existeonel == 1) { if (.@chrid[@i] != 0) { query_sql("INSERT INTO `ragnarok`.`char_reg_num_db` (`char_id`, `key`, `value`) VALUES ("+.@chrid[@i]+", 'USERAURA', 586)"); query_sql("INSERT INTO `ragnarok`.`char_reg_num_db` (`char_id`, `key`, `value`) VALUES ("+.@chrid[@i]+", 'USERAURA1', 587)"); } } } end; This is my console:
  14. Hello there! I've been searching and I don't seem to find (molly) any warper npc, what are you guys using? Preferibly one with the newest maps Thanks!
  15. your 2nd and 3rd packet key is the same? In your client it is So do I just need to leave the 2nd packet key and enable the 1st and 3rd packet key? Exactly
  16. your 2nd and 3rd packet key is the same? In your client it is
  17. Try this: When diffin, pick the First Packet Key and enter the key you see on the previous image, then skip Second Packet Key and select Third Packet Key, introduce the Third Key as you can see on the previous image.
  18. If I remember correctly, rAthena doesn't support 2015 regexes yet, I think it doesn't even support 2014 clients.
×
×
  • Create New...