Jump to content

sandbox

Members
  • Posts

    949
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by sandbox

  1. An easier way is to create a usable item then put these lines as their script.. set eventpoints,eventpoints+1; dispbottom "You now have "+eventpoints+" Event Points";
  2. Well, as the error says, it's missing the WoeInfoBase NPC, maybe you misplaced it while pasting?
  3. File Name: @empladder File Submitter: sandbox File Submitted: 2 Mar 2014 File Category: Utilities Content Author: sandbox Script details and usage It's a script that will show the top 10 Emperium breakers of your server. Suggestions for the improvement of this very simple script would be appreciated. Installation Enable the script on your NPC folder Find this line in npc/guild/agit_main.txt Add below If your script support WoE SE, you will have to edit this file too > npc/guild2/agit_main_se.txtFind Add below Terms & Conditions You are not allowed to reproduce or make profit of this script You are not allowed to take credit for this script. Though you can modify/edit it to your liking. I can give you support, but please, do not message me. It is your own responsibility to create a backup before implementing anything new. Pastebin: http://rathena.org/board/pastebin/73thwenhsb2a/ at_empladder.txt
  4. About the max map setting.. src/common/mmo.h #define MAX_MAP_PER_SERVER 1500 /// Increased to allow creation of Instance Maps
  5. Well, do you have the required homunculus also? You're missing 1 } curly too at the end
  6. by points did you mean Cash Points? If so, here is one way to do it.. set #CASHPOINTS,#CASHPOINTS+XY; replace variable XY to desired amount of points to increase it.
  7. To add text, in your NPC dialog, you should use the 'mes' command. You could add it below this line mes "Hi, I can ^000120evolve your homun^000000."; Based on the item checking via 'countitem', the requirements are 100 TCG, 15 Stone of Sage, and 20 Mithril Coins. You can add this below the above code to show them the requirement. mes "100 TCG"; mes "15 Stone of Sage"; mes "20 Mithril Coins"; mes "XX Gold Coins"; For the additional checking of gold coin, add this code in the 'if-else' statement. Find countitem(7227) < 100 Add before the open parenthesis countitem(671) < XX || Find atcommand "@homfriendly 1000"; Add above delitem 671,XX; Don't forget to replace XX variable with the desired amount of Gold Coin you want for the requirement.
  8. Can you post a screenshot of what skills cant be increased?
  9. Are you sure they are placed in the map correctly? It would also be helpful if you post the scripts here..
  10. That's because renewal doesn't support instant casting because they think it's imbalanced after increasing max level on official servers.. Anyhow, here's a related topic that may help you
  11. Sorry for the late reply, But you are missing 1 closing brace }
  12. Oh yeah, apologies, I just checked mine and it skipped like to 5000.. Do they crash whenever you equip them? Might wanna check the files are placed and named correctly.
  13. It's not capped, as far as I know; the client just doesn't display anything above it (unless modified to do so). Yep, and if i'm not mistaken, Judas or someone was offering a modification for clients to show damage that are more than 6 digits.
  14. Can you give more details? Have you tested it yourself, and did they check if they exceeded a skill's max level(ex. increasing Heal to lvl 11, etc.), and lastly Were they trying to increase multiple skills? I think I encountered an issue about this one before and I failed to increase multiple skills at once.
  15. I am really not fond of lua due to me being a caveman with new clients. But basing from what you've said that the first 3 wings work, I think it the reason is that you jumped the sprite ID after 1003? Why did you jumped to 1007 right away?
  16. Was too lazy to write that for him and since i'm not that fluent with sql queries. Don't forget to backup @Kido!
  17. You might want to delete also the char's items in `inventory`,`cart_inventory`, etc. and also his friends, party info, etc. xD what a pain!
  18. You can just go to `inventory` table then type 7227 in the `nameid` field.. Should return all the char ids of those who have that item.
  19. Just edit the bindatcmd name and then the shop items, also the SHOP & NPC name
  20. File Name: @minimart File Submitter: sandbox File Submitted: 28 Feb 2014 File Category: Utilities Content Author: sandbox Script Details & Usage It's a script intended to help ease the laziness of the players in the RO world today. It basically opens a Tool Dealer upon execution, so they could restock their supply or sell their junks easily. Suggestions for the improvement of this very simple script would be appreciated. Installation Enable the script on your NPC folder Carefully read the comments I made inside the script and make sure to configure it properly Terms & Conditions You are not allowed to reproduce or make profit of this script You are not allowed to take credit for this script. Though you can modify/edit it to your liking. I can give you support, but please, do not message me. It is your own responsibility to create a backup before implementing anything new. Pastebin: http://rathena.org/board/pastebin/f4nxnlt1r7c/ minimart.txt
  21. Well, did you manage to point your DATA.ini to your newly created GRF?
  22. https://github.com/rathena/rathena/commits/master
  23. sandbox

    Quote me

    F*CK! end of the line
  24. - script Gold -1,{ OnNPCKillEvent: if(strcharinfo(3) == "prt_fild01") { getmapxy(.@gold$,.@gx,.@gy,0); set .@Gold_Chance,rand(1,10); //Configure for chance if(.@Gold_Chance == 1) //10% chance. Change to '< 2' for 20%, etc.. makeitem 969,1,.@gold$,.@gx,.@gy; } end; }
×
×
  • Create New...