Jump to content

crazyarashi

Developer
  • Posts

    776
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by crazyarashi

  1. I am not sure but i don't think you can make a two party enter the same instance map as the other party since the map code will be different. For your idea it's better to make it using a BG Script.
  2. If you want to host a server on your pc for you and your friends. First know your WAN IP. Make sure the ports that you're using is open. setup the server on your IP / in the client also
  3. Im pretty sure your laptop will die when you do that.
  4. You are currently the missing a 3d model that's in the map. it maybe missing or wrong directory you need to add it to the directory specified model\pud\file so that the client will be able to read it
  5. May I ask what is the use of implode. I haven't studied that yet nor i haven't seen it yet
  6. Hi Good Day Rathena, Im Still in the midst of studying C++ and want to ask a question about making a menu/switch select using an array. Maybe an example will do im a bit confused reading old posts about it :))
  7. prontera,255,55,5 script Test 123,{ OnInit: waitingroom "Warp",2; if ( getwaitingroomstate( 0, "Warp" ) >= 1 ) doevent "warp_1::OnEnter"; } - script warp_1 -1,{ OnEnter: warp "geffen",123,123; end; } Something Like This Maybe
  8. You need to have a VPS with sufficient RAM, You can either get a vps from a ragnarok hosting (not suggestable because the price is very high/incomplete access) or get a cheap VPS from trusted VPS providers (OVH,Digital Ocean,Vultr) and learn how to install rA in the VPS. there are several guides in the wiki and forum. Installation Guides From Wiki / Vultr VPS Provider Guide on Ubuntu / Youtube Guide There are also 3rd party services for VPS Installation/Server Setup Third Party Services
  9. 12152,Special_Box,Special Present,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "specialbox"; },{},{} // box item id function script specialbox { setarray .i[0],12345,12346; // Itemlist in box set .chance, rand(100); // First item in list (12345) x 1 (1% Chance) if (.chance == 1){ getitem .i[0],1; announce "["+strcharinfo(0)+"] won a ["+getitemname(.i[0])+"] from the Special Box.",0; end; } // First item in list (12346) x 100 (5~10% Chance) if (.chance <= 10 && .chance > 5){ getitem .i[1],100; end; } }
  10. it should be available on the data.grf of kRO
  11. Thor Patcher is very stable atleast for me :))
  12. use an invisible npc to show the special effect. :))
  13. Your post lacks information. I don't really know what you need. You should add more information so people can help you.
  14. you do need to see the errors in the console in putty or vcn logs. you do need to provide what client youre using so we can reproduce the error and help.
  15. Is it possible in rAthena to make a warp portal randomly warp you in 5 different places
  16. If you mean really fixed delays just add cooldowns on it. 62,350,0,0,0,0,0,350 //Bowling Bash of Knight. 62,350,0,0,0,0,500,350 //Bowling Bash of Knight. 0.50 Sec Cooldown 62,350,0,0,0,0,1000,350 //Bowling Bash of Knight. 1 Sec Cooldown
  17. This just came up in my mind LMAO don't know if it works XD Weird
  18. When I tried hamachi and failed to make it work after tons of test. It's more suggestible to get a cheap vps for testing. :))
  19. - script ItemCheck -1,{ OnPCLoadMapEvent: getmapxy(.@map$,.@mapx,.@mapy,0); if(.@map$!="2@mir") end; if(countitem(501) > 0){ warp "prontera",156,191; end; } } 2@mir mapflag loadevent For MapCheck. //=================================================================// //================= Custom leveling warper level 1 - 10 only ======// //=================================================================// prontera,150,177,6 script Warper 1-10 858,{ if (BaseLevel > 10) { mes "[ ^0065DFWarper^000000 ]"; mes " These Area is not for you "; close; } if(countitem(501) > 0){ mes "[ ^0065DFWarper^000000 ]"; mes "This Item is not allowed inside"; close; } else { mes "[ ^0065DFWarper^000000 ]"; mes "Would you like to enter?"; if (select("Yes!","No thanks.") == 2) close; warp "2@mir",101,95; close; OnInit: waitingroom "Leveling Area 1-10",0; end; } For NPC
  20. bonus2 bSkillAtk,"SK_TEST",50/2; Try this :))
  21. I think this item have multiple item numbers with different effect and just delitem and getitem to the same item with different effect vary on the option selected. :))
  22. What githash are you using? :))
×
×
  • Create New...