Jump to content

Aureon

Members
  • Posts

    281
  • Joined

  • Last visited

Everything posted by Aureon

  1. I added your script on my server and I cleaned some spaces on it. Currently, perfectly working. Get the script here: http://upaste.me/966a304348e5ba0ba Screenshot: http://imgur.com/dzbwFrX If this still won't work, it might be the way you add the script.
  2. On your "monster" command, you should also include the name of the npc together with your label. Find: monster .Map$,0,0,"MVP Event",.MVP[ .RandMVP ],3,strnpcinfo(0)+"::OnKilled"; Replace: monster .Map$,0,0,"MVP Event",.MVP[ .RandMVP ],3,"Summoner::OnKilled";
  3. As long as you have read and know the answer for their questions, provide it to them, that's why they were asking. Anyways @ts, you can have Fluxcp for your control panel http://rathena.github.io/FluxCP/ and i suggest that you should install it on a different host. You can follow this tutorial for your guidance
  4. As the error says that on line 288 of your item_db (your custom item i guess) it lacks a column, review that again and if still you haven't figure it out post the whole line 288 of your item db here.
  5. What does the error says?
  6. You can follow this guide https://rathena.org/board/topic/104452-tutorial-how-to-create-ragnarok-offline-2015-client/
  7. You may find them here https://rathena.org/board/forum/45-paid-services/
  8. Have an updated ROTranslation files For pre-re: https://github.com/zackdreaver/ROenglishPRE For renewal: https://github.com/zackdreaver/ROenglishRE Please do update your kRO as well. One thing i know on translation grf files to korean, extract grf using grf builder and automatically it translates. Thats what i had observed.
  9. Afaik, there's none I suggest you to move on to newer clients such as 2013-08-07, i highly recommend that.
  10. Much better that you changed your client version. And yea, ragexeRE aint stable at all
  11. Which client version are using 20120410ragexe or ragexeRE?
  12. Its because you did not patch your client with those 3 packets for packet obfuscation
  13. You better check this out https://rathena.org/board/topic/77167-golden-thief-bug/?p=172343
  14. Yes, 20130807 is a stable client *use nemo to patch your client and it doesnt require any xdiff file, all you just need to do is to either apply your own patches or select the recommended patches. Dont forget to include translate client to english patch on nemo * you can have an updated rotranslations here which includes updated lua and translated files from korean to english: https://github.com/zackdreaver/ROenglishRE If you're still confused on creating your server, you can follow this guide: https://rathena.org/board/topic/104452-tutorial-how-to-create-ragnarok-offline-2015-client/
  15. Lol =D @ts 1) Use git instead of svn: https://github.com/rathena/rathena 2) ROTranslation: https://github.com/zackdreaver/ROenglishRE 3) As of the moment still no stable client for 2015 and 2016 yet i can provide you for your request: https://rathena.org/board/topic/104707-2015-10-29aragexe/ 4) Diff? Use NEMO's recommended patches 5) Updated NEMO: https://github.com/MStr3am/NEMO 6) Click Zack's link above
  16. I suggest you not to use ragexeRE those clients has lots of bugs, better use 2012-04-10aragexe or newer stable client such as 2013-08-07ragexe
  17. i see, mind if i ask, which of these clients for 2012-04-10 did you use ragexeRE or ragexe? Try this solution, Run opensetup.exe and uncheck "Restrict mouse to window".
  18. What client patcher are you using? Did you use NEMO Patcher? If then, patch your client with Translate client to english and please provide an updated copy RO translations
  19. Have you configured your conf/inter_athena.conf?
  20. Do you have these files on your GRF? num2itemdesctable.txt num2itemdisplaynametable and num2itemresnametable.txt Or you may want to read THIS -> you have the same prob
  21. i want update the game like add http://irowiki.org/wiki/Old_Glast_Heim and horror toy factory nightmare clock tower all the news Maybe your server was set for "pre-re", instances such as old glast heim is currently available at npc/re/instances folder although some of your mentioned instances such as horror toy factory is not yet here.
  22. Aureon

    Pk room

    How about this? // // NOTE: Remove gvg mapflag on guild_vs2 (default on this script) if you want to use this map as pk room // - script PK#config -1,{ OnInit: /* minimum zeny needed to enter */ set $@min_zeny, 10000000; //------------------------------- /* special item you mentioned */ set $@spcial_item, 7227; // item id set $@sitem_amount, 20; // item amount to be exchanged on npc //------------------------------- /* item to be exchanged */ set $@ex_item, 501; // item id set $@exitem_amount, 1; //item amount //------------------------------- end; } - script PK#Room -1,{ OnNPCKillEvent: getmapxy(@mapn$,@mapx,@mapy,0); if (@mapn$ == "guild_vs2"){ if( killedrid == 1002) { set .@rand, rand (10+30+100); if (.@rand < 10){ getitem $@spcial_item,1; // 10% of having 7227=tcg card as special item } else if (.@rand < 30){ getitem 12103,20; // 30% rate of having bloody branch } else if (.@rand < 100){ getitem 969,50; // 100% rate of having gold } else { getitem 969,50; // 100% rate of having gold } end; } } else{ end; } OnPCDieEvent: getmapxy(@mapn$,@mapx,@mapy,0); if (@mapn$ == "guild_vs2"){ sleep2 1000; warp "prontera",150,150; end; } end; } prontera,155,184,4 script rAthena 100,{ set @npc$,"[rAthena]"; mes @npc$; mes "What do you want to do?"; switch(select("Enter PVP Room","Exchange Items")){ case 1: if (Zeny >= $@min_zeny){ set Zeny,Zeny-$@min_zeny; warp "guild_vs2",0,0; end; } else{ dispbottom "Insufficient zeny"; close; } break; case 2: if (countitem($@spcial_item) >= $@sitem_amount){ dispbottom "Deal is succesful!"; getitem $@ex_item,$@exitem_amount; delitem $@spcial_item,$@sitem_amount; close; } else { dispbottom "Insufficient items"; close; } } close; } /* mapflags and monster spawn */ guild_vs2,0,0,0, monster Poring 1002,1,180000,0,0 guild_vs2 mapflag nomemo guild_vs2 mapflag pvp guild_vs2 mapflag noteleport
  23. @emistry Thanks for that, sensei! im not that good on scripting, yet just wanna help out the community
  24. How about this? prontera,152,183,4 script rAthena 100,{ switch(select("Poring Coin","TCG Card","Berry")){ case 1: if(countitem(671) >= 10) { // 10 Gold Coin to 10 Poring Coin getitem 7539,10; delitem 671,10; close; } else { callsub OnEnd; close; } case 2: if(countitem(671) >= 10) { // 10 Gold Coin to 10 TCG Card getitem 7227,10; delitem 671,10; close; } else { callsub OnEnd; close; } case 3: if(countitem(671) >= 10){ // 10 Gold Coin to 10 Yggdrasil Berry getitem 607,10; delitem 671,10; close; } else { callsub OnEnd; close; } } OnEnd: dispbottom "You don't have enough Gold Coin"; close; }
×
×
  • Create New...