Jump to content

Onairda

Members
  • Posts

    181
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Philippines
  • Server
    G-Ragnarok Online 18+(Nude sprite Enable)

Recent Profile Visitors

5869 profile views

Onairda's Achievements

Metaling

Metaling (6/15)

  • Problem Solver Rare
  • Reacting Well
  • Dedicated
  • First Post
  • Collaborator

Recent Badges

9

Reputation

14

Community Answers

  1. Hello Everyone, I have created an instance with the setting NoNPC: true. This prevents copying NPCs from the source map. How can I enable my custom NPC inside the instance? Even though I have set NoNPC, the script I am using (see below) is not enabling the NPC inside the instance. // Instance Controller NPC (Triggers OnInstanceInit) moc_fild17,37,289,0 script InstanceSpawner#DD 1001,{ end; OnInstanceInit: // Broadcast to the instance map mapannounce instance_mapname("moc_fild17"), "[System]: The monsters have arrived!", bc_map; // Spawn mobs in the instance monster instance_mapname("moc_fild17"), 50, 50, "Phreeoni Minion", 1002, 10; monster instance_mapname("moc_fild17"), 53, 53, "Phreeoni", 1159, 1; // Enable the instance NPC enablenpc instance_npcname("PhreeoniHelper#DD"); end; } // Instance-Only NPC (initially hidden) moc_fild17,42,292,0 script PhreeoniHelper#DD 100,{ mes "Hello!"; mes "Welcome to the Phreeoni Instance."; close; OnInit: // Hide globally — needed due to NoNpc: true hideonnpc strnpcinfo(0); end; } Thank you!!
  2. Hello Is IM_CHAR now stable? I tried creating my instance using IM_CHAR but not creating instanceid
  3. ERROR RECVING LINK2001 SOVLED! Just get the format in Vending.cpp
  4. 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?
  5. Is this added on Latest Git? Thank you so much!
  6. 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.
  7. 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!
  8. 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
  9. 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?
  10. is there anything better than AndRO? and Vykimo?
  11. Hello Could you provide the best ragnarok mobile creator? the one with less errors. Android OS only. Thank you!
  12. Hello where do you get the ClientGenerator.bat? I am planning to download new 2022 clients + the data folder side
  13. 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
×
×
  • Create New...