Jump to content

Neffletics

Members
  • Posts

    149
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Neffletics

  1. Cute! I'll give it a try.
  2. eAmod is still active. Their repo is still in assembla.
  3. Damn, is this available in Asia? I am from the Philippines.
  4. For some reason, it fails when it's not running with admin privileges. Try running as admin.
  5. Neffletics

    Vip

    Ah sorry, I believe you have to edit it manually in msgstringtable.txt
  6. 1- entrance talk to npc to gain acces to dungeon they must be in a party then get warped to dungeon level 1 if (instance_check_party(getcharid(1),number of party members,min level required,max level)) { warp "map", 150, 150; } else { mes "message here"; close; } 2- On dungeon level 2 there are 3 mvps... by killing 1 npc i want to show up a global message saying : (partyname) has killed a Shadow Keeper of the Realms. Spawn: .mob = 3; areamonster "map",150,150,10,10,"Shadow Keeper of the Realms 1",monster id,number of spawn,strnpcinfo(1)+"::OnMobKilled"; areamonster "map",150,150,10,10,"Shadow Keeper of the Realms 2",monster id,number of spawn,strnpcinfo(1)+"::OnMobKilled"; areamonster "map",150,150,10,10,"Shadow Keeper of the Realms 3",monster id,number of spawn,strnpcinfo(1)+"::OnMobKilled"; 3. on killing al the 3 keepers i want to give evreone who is in the party a item like lets take as example an apple.. OnMobKilled: .mob--; if ( !.mob ) { enablenpc "apple_giver"; } else { announce "Kill the 3 monsters to get your apples!"; } end; Then just create an NPC that will give them the reward. Hope you get the idea. Good luck! P.S. Not yet tested and it was written using my phone's notepad.
  7. Neffletics

    Vip

    - script Sample -1,{ OnPCLoginEvent: if ( getgroupid() == 5 ) { dispbottom "============================================="; dispbottom "exp value:"; dispbottom "Drop rate:"; dispbottom "Death Penalty:"; dispbottom "your VIP status is valid for year,months,days,hours,minutes."; dispbottom "you are VIP until: year,months,days,hours,minutes."; dispbottom "============================================="; end; } else { dispbottom "============================================="; dispbottom "exp value:"; dispbottom "Drop rate:"; dispbottom "Death Penalty:"; dispbottom "to become a VIP and increase your experience."; dispbottom "Acesse : www"; dispbottom "============================================="; } } Not tested, I wrote it using my phone's notepad. Hope it works~
  8. Original script - script ItemGiver 1,{ OnPCLoginEvent: if(!#givenStartItems) { set #givenStartItems, 1; //=== Freebies getitem <item_id>, <quantity>; } end; } Duplicate - script ItemGiver2 1,{ OnPCLoginEvent: if(!#givenStartItems2) { set #givenStartItems2, 1; //=== Freebies getitem <item_id>, <quantity>; } end; } I just changed the name of the script and givenStartItems to givenStartItems2.
  9. Turn the debugging mode on so we'll know how we can help you.
  10. I haven't touched 2010-07-30 for quite some time. But have you tried editing skilltreeview.txt (inside Data folder)?
  11. Yes, that's correct. Also, just a piece of advice, instead of asking too many questions, why not try it instead? It'll only take few script reloads. (in short, trial and error. We all been there) The problem is sir When im setting up woe. And checking the scripts that ive edited. I have to wait for it to end to check if its working or not. To hassle to wait for one hour because it do not have the setting in minutes.. Nweis thank you tialin. ill check it later. You can simply change your computer's date and time The emulator get its server time from its host.
  12. Yes, that's correct. Also, just a piece of advice, instead of asking too many questions, why not try it instead? It'll only take few script reloads. (in short, trial and error. We all been there)
  13. You can use phpmyadmin, so you can open your database through your browser. Or MySQL Workbench...
  14. Good luck! I'll be checking this thread from time to time to read updates~ Awesome work btw. (the old Sakexe looks nostalgic. I've missed it)
  15. rAthena wiki would be more than enough~ https://rathena.org/wiki/Main_Page Read it and help yourself like what most of us did many years ago.
  16. Open the database, go to login table and change your account's level to 99.
  17. I would love to have one but the shipping fee would be very expensive as what you've mentioned and I don't trust USPS either (I had a terrible experience with USPS when I was living in US). Shipping through DHL would cost roughly 40USD
  18. For the mob_db, this might help. This is until Amatsu. http://pastebin.com/sP10PQNL
  19. Hmmm... you can just edit it through your database. It's better if you learn how to navigate the database instead of asking to give you some sort of web app that you can use for your convenience.
  20. You might want to search at eathena forum too. (The old one) https://eathena.ws/board
  21. You can diff through this and diff the remaining using NEMO.
  22. This might help: http://pastebin.com/Hn02Hw1z I got it from a Thai Developer that I am working with another game.
  23. Everything's in our wiki. You should browse it https://rathena.org/wiki/Adding_a_Script
  24. Are you sure you've compiled your server to your client date? It's a packet error, I believe.
×
×
  • Create New...