Jump to content

sader1992

Content Moderator
  • Posts

    1691
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by sader1992

  1. i think the knockback already wont work in Woe
  2. let's say i want to put npc on the Street light /where == 146,111 /where again after one spot == 146,112 146,111 and 146,112 then the Street light is 146,110 and here it is just do it on higher scale
  3. as you put it on walkable area get the coordinates and type them to the npc
  4. on the water = in the map coordinates but it's non walkable area = the players can't move to it and yes you can put the npc in non walkable area and no you can't put npc outside the map coordinates
  5. you are missing some kind of close statement in the script if you post the script everyone would help
  6. - script level_checker -1,{ OnPCBaseLvUpEvent: if(BaseLevel == 99) { atcommand "@blvl 1"; } }
  7. yes you can use your phone if you have WIFI on the phone and the PCs , or if you have Bluetooth on the phone and PCs they would work of you can get a line cable and connect the PCs directly i don't suggest hamachi and i think hamachi need to be connected on the internet .
  8. from another pc ? they must have some connection like network you choose your server pc and use it ip and you put the ip in the client info and you must open the login port in the fire wall and if you use router to connect the 2 PCs you need to open the port there too if you want to open the game twice on the same pc ? i suggest learn hot to make ragnarok server from the first step https://github.com/rathena/rathena/wiki and search here https://rathena.org/board/forum/23-general/ and search in google
  9. - script login_checker -1,{ OnPCLogin: dispbottom "============================================="; dispbottom "Account Status : Normal Player"; dispbottom "Become vip and have incredible advantages"; dispbottom "Access website and learn more"; dispbottom "============================================"; end; }
  10. function script Fake_Func { dispbottom "Test"; dispbottom ""+ getvariableofnpc(.tmenu$[var1],"Fake_Npc") +""; end; } prontera,153,193,6 script Fake_Npc 123,{ menu ""+.tmenu$[1]+"",-, ""+.tmenu$[2]+"",T1, "Info",T2; var1 = 1; end; T1: var1 = 2; end; T2: Fake_Func; OnInit: setarray .tmenu$[1],"Dog","Cat"; end; } you can do like that if you want the function outside the npc
  11. sorry :x same as the first reply but contact me in the discord so i used TeamViewer to do it since he didn't knew how to (he was trying to use nemo on the exe that he already diffed with nemo with walk to delay patch) :X
  12. DO NOT USE Disable Walk To Delay. Change Walk To Delay. IN NEMO this will fix your problem
  13. im not sure but i think this
  14. some clients you may need to turn off the DEP on them to work try it start from your system info > search in google about it it's a windows thing
  15. i would say net framwork 3.5 but try to get all the .dll from kro and did you try to run ragnarok like any private server ? just to make sure you have all it need to run it or you try to use another client ? did the game run on this pc before ?(after the system install)
  16. @yuchinin
  17. why don't you just make it your self with last rathena etc last kro and the client you want ? https://github.com/rathena/rathena/wiki
  18. if(getrefine()==9){ bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;}else if(getrefine()>=10){ bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,20;} try like that
  19. if(getrefine()==9){ bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;}else if(getrefine()>=10){ bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,20;} try like that
  20. yes as i see you have up to 82 head = the max is 82 if you put it 83 and you don't have the 83 file you will get error when you change your hear style to it
  21. rAthena\conf\battle\client.conf change this max_hair_style: 27 to be like that max_hair_style: 82
  22. you need to add the mobs you want on the map then you edit the mob drops in the mob_db (do not edit mobs that used in another map lik poring etc the mob edit will be on a monster not a map) or you would need a script to make the items to the char after killing a monster on a map ether ways you would need to add mob spawn to the map like so prontera,0,0,0,0 monster Poring 1002,70,0,0,0 this will spawn 70 poring in prontera this added out side a npc script not inside
  23. i don't know what is gold room but i seen a lot of this kind of topic in the forum use google or the forum search
  24. use (Disable Doram Character Creation UI [Experimental]) patch in this NEMO and in the server side rathena-master\src\char\char.cpp search for if (start_job != JOB_NOVICE && start_job != JOB_SUMMONER) return -2; // Invalid job change it to if (start_job != JOB_NOVICE) return -2; // Invalid job
×
×
  • Create New...