Jump to content

KazumaSatou

Members
  • Posts

    157
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by KazumaSatou

  1. https://frost.ragdev.com/installing-and-fixing-hateffect/
  2. I told you, its a hateffect and not using lub files.
  3. It is a hateffect. Here's the files of the Falling Snow. C_Falling_Snow.zip
  4. Then check your id and sprite name on the lub files. Double check it. And check the sprites on grf editor if shows the sprite you're expecting.
  5. You need to add it on ·Îºê folder then sprite name of your sprite then jobname.spr/act with male/female in name. Sample in grf editor:
  6. Have you tried Hercules Script Checker? https://haru.ws/scriptchecker/ This might works on rathena scripts.
  7. Only temporary skill will be automatically hidden, not the one on the skill tree.
  8. You can hide disable skills (if you want to literally remove from game) on luafiles514/lua files/skillinfoz/skilltreeview.lub and make sure you also remove it from db/(pre-)re/skill_tree.yml file.
  9. query_sql("SELECT `last_ip` FROM `ragnarok_accounts`.`login` WHERE `account_id` = "+getcharid(3)+"",.@IP ); query_sql("SELECT `account_id` FROM `ragnarok_accounts`.`login` WHERE `last_ip` = "+.@IP+"",.@Accountlist ); Here. The database and table has been swapped.
  10. Yes, that's why I added the database name on the table on my code, try to use the < 1 on the if(.@lastip$ if it works
  11. Try this : query_sql("SELECT `last_ip` FROM `login`.`ragnarok_accounts` WHERE `account_id` = "+.@aid[.@j]+"",.@last_ip$); if(.@last_ip$ == ""){ do things here when last ip is empty. } I don't know why you're using the < 1 on checking ip since the ip is a string so it won't be read if you're comparing it to an integer.
  12. Try to rename the down4.exe name to 2021-10-28_RagexeRE.exe
  13. The red box you're saying? That's only on the item icon. You can check it on your grf.
  14. What do you mean by box? The barter system itself? You can add your custom barter system by creating your own in npc folder. There's a barters.yml file there.
  15. Try this. new_1-4,12,187,6 script Donaion Instant Armor 794,{ mes "[Donation Instant Armor By Friday]"; if (countitem(7615) > 0) { mes "Select Your Armor"; next; switch(select("Non Slotted Armor.:Slotted Armor.:High Grade Armor.:Maybe next time.")){ case 1: setarray .@Items[0],2307,2309,2314,2316,2321,2325,2327,2328,2330,2332,2334,2335,2341,2344,2346,2348,2350,2337,2386,2394,2395,2396;; break; case 2: setarray .@Items[0],2311,2318,2319,2320,2308,2310,2315,2317,2322,2324,2326,2331,2333,2336,2342,2345,2347,2349,2351; break; case 3: setarray .@Items[0],2364,2365,2391,2374,2375,2357,2376,2377,2378,2379,2380,2381,2382,2387,2388,2389,2390,2367; break; case 4: mes "[Donation Instant Armor]"; mes "Please come back when you have any interest."; close; } mes "Select Your ORB"; next; switch(select("Select Orb.:Maybe next time.")) { case 1: setarray .@orb[0],4702,4732,4742,4712,4722,4752; break; case 2: mes "[Donation Instant Armor]"; mes "Please come back when you have any interest."; close; } mes "U Need to Refine?. +1,+2,+3,+4,+5,+6,+7,+8,+9,+10 ?"; mes "If you don't want any, please enter the number, '0.'"; next; while(1) { input .@darmorrefine; if (.@darmorrefine == 0) { mes "The deal has"; mes "been cancelled."; close; } else if (.@darmorrefine < 0 || .@darmorrefine > 10) { mes "Maximum Refine +10"; mes "got it? Good."; next; } else { break; } progressbar "ffff00",1; delitem 7615,1; specialeffect 154; getitem2 .@item, 1, 1, .@darmorrefine, 0, 0, 0, 0, .@orb; } } else { mes "Hmm? There's nothing to be enchanted!"; mes "Please come back with just ONE equipment to be enchanted."; close; } }
  16. Add in your item script : callfunc("KeyWarp"); NPC Function Script : Just change the item ids and the showscript to warp to anywhere you want. Mark as solution if this helped you. ^^ function script KeyWarp { if(countitem(6266) >= 1 || countitem(6267) >= 1 || countitem(6268) >= 1) menu (countitem(6267) ? ""+getitemname(6267)+"":""),Test1,(countitem(6268) ? ""+getitemname(6268)+"":""),Test2,(countitem(6266) ? ""+getitemname(6266)+"":""),Test3; else showscript "You don't hold any key."; end; Test1: showscript "Warp To Key of Illusion"; end; Test2: showscript "Warp to Key of Gaiety"; end; Test3: showscript "Warp to Key of Deception"; end; }
  17. You can diff old clients that supports the old emulator.
  18. Works only on Zero Client Version of 2021-11-03
  19. Thor patcher doesn't allow https I think.
  20. You need to patch the diff on your emulator to use the official hourly ui
  21. Yes, it is not yet merged to the master git.
  22. Try to reset look your character on your website and try to login again. It might be on custom item or palette/hairstyle/haircolor.
×
×
  • Create New...