Jump to content

Start_

Members
  • Posts

    950
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Start_

  1. prontera,156,184,0 script YOUR_NPC_NAME 899,{ set .@STOPWALK,"1"; //YOUR SCRIPT HERE // // // //YOUR SCRIPT END HERE set .@STOPWALK,"0"; close; OnInit: if(.@STOPWALK == 0){ addrid(0); while(1){ npcspeed 300; if (getmapxy(@mapname$, @mapx, @mapy, UNITTYPE_NPC, "YOUR_NPC_NAME") !=0) { end; } set .@X_RANDOM,rand(-5,5); set .@Y_RANDOM,rand(-5,5); npcwalkto @mapx+.@X_RANDOM,@mapy+.@Y_RANDOM; sleep2 5000; } } end; }
  2. VISUAL STUDIO 2008 : https://www.microsoft.com/en-us/download/details.aspx?id=7873 VISUAL STUDIO 2008 SP1 : https://www.microsoft.com/en-us/download/details.aspx?id=10986 VISUAL STUDIO 2010 : https://www.microsoft.com/en-us/download/details.aspx?id=23507 VISUAL STUDIO 2012 : https://www.microsoft.com/en-us/download/details.aspx?id=30682 VISUAL STUDIO 2013 : https://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx VISUAL STUDIO 2015 : https://beta.visualstudio.com/visual-studio-community-vs/ VISUAL STUDIO 2015 C++ TOOLS ( IF FORGET TO CHECK C++ ON 2015 INSTALLER ) 64BIT https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe 32 BIT https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe
  3. I had SAO based projects this is it http://ssro.ml/ Sorry for Thai languages server.
  4. Thanks rAthena, The great RO Emulator ever.
  5. https://goo.gl/EDq1ir Sorry for Thai languages.
  6. This made the magic happen.
  7. Is it had required skill. Which skill you had clicked.
  8. Please close this topic thanks! It's my false to not read the doc correctly.
  9. Please close this topic. 1.About skill tree. (Solved) I've used item replace skill button to item button lol. ( by item script = sc_start "KN_ONEHAND",180000; , and item type 11 for unlimited use.) I was played as Swordsman classes and Knight. This is db>re>skill_tree.txt 1,495,1,0,0,0,0,0,0,0,0,0,0 //KN_ONEHAND#Onehand Quicken# 7,495,1,0,0,0,0,0,0,0,0,0,0 //KN_ONEHAND#Onehand Quicken# and many more jobs. I tried to added "One-Handed-Quicken" by my NPC. This is scripts. ( Working fine. ) prt_castle,164,153,5 script nnnnnnnnnnnnn 721,{ skill 495,1,0; end; } But after log out and login or changing the map, One-Handed-Quicken has gone. Why? 2.Special effect number (Solved) I want to know Special effect number of Black Dragon Ascenion ( ref. ). Thank you.
  10. Why many people wanted to use old things. XD I loved thing that newest. Try to use old data for old model & texture sir.
  11. Just max the value try 100 or something ( read the note (note 1, 2, 3) )
  12. Try using clean client? ( By re-download ragnarok client )
  13. Try to use rAthena custom scripts would be good. It's located at npc\scripts_custom.conf then you just open the NPC. It's already had.
  14. atcommand "@vip +2h "+strcharinfo(0)+"";
  15. Use lastest revision of rAthena. I've tested. It's worked fine.
  16. https://rathena.org/wiki/Changebase from Wiki.
  17. - script ExtraDrop -1,{ OnInit: setarray .mon_list[0],1002,1101; // list of monster ids .mon_size = getarraysize(.mon_list); .cashpt = 10; // How much cashpoints? .zeny = 5000000; // How much zeny? .reward = 501; // Reward item id .reward_amt = 1; // Reward Amount end; OnNPCKillEvent: for( .@i = 0; .@i < .mon_size; .@i++ ) { if( killedrid == .mon_list[.@i] ) { #CASHPOINTS += .cashpt; Zeny += .zeny; if( rand(100) < 10 ) getitem .reward,.reward_amt; break; } } end; } To I tried my best, It's hardcode : ) . lol
  18. You just change the map to what you want isn't it?
  19. - script YourSystem -1,{ OnPCLoginEvent: changebase 4012; end; }
  20. Oh sorry, It's can use to guildmates now right? Then change vaules on " skill_db.txt " to default. 402,9,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, PF_MINDBREAKER,Mind Breaker
  21. http://ratemyserver.net/index.php?page=skill_db&skid=402 Target : Enemy But If you wanted to changing to ( Teammate || Enemy ) I think you can do it on " skill_db.txt " " inf " " inf2 "
  22. I don't think OnNPCKillEvent: would be good. Because It's expensive to use like Monster died 100 times and script run per times. ( or not? ) Try using item that dropped by specific monster and change them into bonus on simple npc. ( Random item + zeny like your scripts too. )
×
×
  • Create New...