Jump to content

Onairda

Members
  • Posts

    180
  • Joined

  • Last visited

Everything posted by Onairda

  1. Hello Is IM_CHAR now stable? I tried creating my instance using IM_CHAR but not creating instanceid
  2. ERROR RECVING LINK2001 SOVLED! Just get the format in Vending.cpp
  3. I have a custom skills in map/skill.cpp Could someone give me a syntax to insert data in SQL Table Name: CustomMonster Fields: id, char_id, mob_id, mob_name what sysntax I can use to insert the data?
  4. Is this added on Latest Git? Thank you so much!
  5. Done! go to src/map/clif.cpp For Roulette Icon void clif_roulette_open( struct map_session_data* sd ){ nullpo_retv( sd ); struct packet_roulette_open_ack p; p.PacketType = 0xa1a; p.Result = 0; // result p.Serial = 0; // serial p.Step = (sd->roulette.claimPrize) ? sd->roulette.stage - 1 : 0; p.Idx = (sd->roulette.claimPrize) ? sd->roulette.prizeIdx : -1; p.AdditionItemID = -1; //! TODO: Display bonus item p.GoldPoint = sd->roulette_point.gold; p.SilverPoint = sd->roulette_point.silver; p.BronzePoint = sd->roulette_point.bronze; sd->state.roulette_open = true; clif_send( &p, sizeof( p ), &sd->bl, SELF ); } Change to void clif_roulette_open( struct map_session_data* sd ){ nullpo_retv( sd ); npc_event_do_id("NPCNAME::OnLabel", sd->status.account_id); } NPC: - script NPCNAME -1,{ OnLabel: mes "add whatever you want."; end; } then under cliff, searched the Cash Shop button and do the same.
  6. I have now solve this without following and installing the video above. 1st: Diff client 'Enable HTTP Emblem' (FOR GIF if you don't like GIF emblem don't enable it), 'Always call SelectKoreaClientInfo()'. 2nd: luafiles514/lua files/service_korea/ ExternalSettings_kr.lub and ExternalSettings_kr_sak.lub : AssistAddr = "127.0.0.1:8080" the port is based on the web_conf mine is 8080. MakeableRace = { Doram = false } -- Change the "AssistAddr" to your IP AssistAddr = "127.0.0.1:8080" Url = { TwitterUrl = "http://ipaddress:8080" } AccountLinkedUserDataUrl = { Save = "http://ipaddress here:8080/userconfig/save", Load = "http://ipaddress here:8080/userconfig/load" } TwitterDataUrl = { Auth = "http://ipaddress here:8080/twitter/user-auth", Upload = "http://ipaddress here:8080/twitter/upload" } EmblemDataUrl = { Upload = "http://ipaddress here:8080/emblem/upload", Download = "http://ipaddress here:8080/emblem/download" } 3rd: Clientinfo: should be Korea in service Type/ <clientinfo> <desc>Ragnarok Client Information</desc> <servicetype>korea</servicetype> <servertype>primary</servertype> <connection> <display>Ragnarok</display> <balloon>Server</balloon> <address>15.235.225.202</address> <port>6900</port> <version>55</version> <langtype>1</langtype> <registrationweb></registrationweb> <loading> <image>loading00.jpg</image> <image>loading01.jpg</image> <image>loading02.jpg</image> <image>loading03.jpg</image> <image>loading04.jpg</image> <image>loading05.jpg</image> <image>loading06.jpg</image> </loading> <yellow> <admin>2000000</admin> <admin>2000002</admin> <admin>2000003</admin> </yellow> <aid> <admin>2000000</admin> </aid> </connection> </clientinfo> Restart your server!
  7. Hello Everyone, In my client version 2020-01-08a, no emblems are displaying. The 24-bit .bmp and GIF emblems are not applying or showing in-game. I checked the 'Enable HTTP Emblem on Ragexe' option during diffing, but it is still not working. Now my question, is the below tutorial is still required to make the emblem work? until now 2024? , t
  8. Hello Everyone How can I make it so that when the cash shop icon is clicked in-game, it calls the NPC script instead of opening the cash shop menu?
  9. is there anything better than AndRO? and Vykimo?
  10. Hello Could you provide the best ragnarok mobile creator? the one with less errors. Android OS only. Thank you!
  11. Hello where do you get the ClientGenerator.bat? I am planning to download new 2022 clients + the data folder side
  12. EDITED: Working now!, Forgot to removed the hashtag before the word 'Body' #Body db/import/mob_avail.txt Take note: Mob name should always CAPITAL Character to work. Body: # Examples - Mob: PORING Sprite: BAPHOMET
  13. will it work even though it was inside the db/import?
  14. Hello I am planning to create a Player Figure monster. However, Mob Avail is missing in DB folder and is there any lastest guide for latest rathena? Thank you!
  15. Hello is this possible in game? Open an Application in windows using NPC script in game? Thank you
  16. Hello, Can someone help me to edit this script to only count 1 hour and 20 minutes then refresh again to 1 hour and 20 minutes: because I have an event that starts every 1 hour and 20 minutes. prontera,150,150,5 script HourTimer 111,{ OnInit: while( .@a != 1 ){ delwaitingroom; waitingroom ""+gettimestr( "%H:%M:%S %p",15),0; sleep 1000; } end; }
  17. Hello Good day! I am planning to create a Global function that will be used by different NPCs at the same time, and this Global function requires the variable. please see the below. I have an Idea in C#, but not sure how this will work with Rathena //------------------------ Test.txt - SCript Prontera,150,150 - - - -{ mes "Input 1st Number:"; input .@FirstNumber; next; mes "Input 2nd Number:"; input .@SecondNumber; .@total = callfunc add_numbers(.@FirstNumber, .@secondNumber) } //------------------------ GlobalFunc.txt - Script GLOBAL function add_numbers(a, b) result = a + b query_sql(Insert result to addition_tbl) return result end
  18. Hello Is bonus bonus bVariableCastrate,-30; o can be placed on Potion? for example when a potion is used it will last up to 30 minutes then the effect will be gone. Please help/guide how to it?
  19. Onairda

    GIF Emblem

    Solved! Use 2020 or any Clients that support HTTP Emblem (Diffed in Nemo)
  20. I change my exe to 2020 that supports HTTP emblem, then thats it. I used NEMO by the way.
  21. Hello sorry for the long response :D. I tried creating a custom DLL. However, I don't know how to load it using use custom DLL in NEMO, maybe you can help me? I tried loading in the DLL I've created but not working Here is the error: bump thank you done it using Visual Studio. Thank you!
  22. My Webserv.bat is working and no error. However, it don't know where to place the emblem folder and the emblem's. Im using 2019 client will it work?
  23. Onairda

    GIF Emblem

    Hello I've noticed that the latest rathena git have web-server.bat, I am just think how to enable this so I can use GIF emblem? and also is this fit to work with 2019-06.05f clients? Thank you so much
×
×
  • Create New...