Jump to content

michaelsoftman

Members
  • Posts

    410
  • Joined

  • Last visited

Everything posted by michaelsoftman

  1. L_FINAL2: next; mes .npcname$; mes "Brilliant! Fantastic! Here you go."; getitem .prize,1; announce "Whatever you want goes here",bc_all; close; }
  2. I have no idea what you mean by crf file. You need to find the matching LUA files for your client date, otherwise you will never get it to work ever. That's why following the youtube tutorial doesn't work, it's a different client date from what you're using.
  3. Well, yes (at least in kRO updates). Like i said before, data.grf contains almost everything, but a few files you can find only in rdata, like some maps and textures (I guess that data.grf will get them later). Anyway, it's a very small file in this client, so no big deal to get it, yes? After all rsu-kro-renewal-lite patcher gets new updates for it. Oh alright, cool. Thanks for the answer, and the release!
  4. Is rdata.grf used still? I thought gravity had gone back to just patching into data.grf. Reason being I have no rdata.grf, and I'm able to use every mob, map, feature etc up to late 2012.
  5. You're using the wrong LUA files with your client. Just match the dates for them.
  6. set_time_limit() can only be enabled by your web host. If it's disabled, it's going to stay disabled. Don't use free hosting, or ask your web host to enable it.
  7. Hello, I'm trying to add in a custom Gunslinger weapon. But neither of the utilities mentioned on the wiki have Gunslinger support for some reason. http://rathena.org/board/files/file/2494-ra-sprite-name-gen/ http://rathena.org/board/files/file/2386-ea-sprite-name-generator/ Do Gunslingers share the same filenames as another class or something?
  8. Wouldn't it make more sense to put Flux on your VPS with your server?
  9. Rather than post a new topic about this, are his mob recolors saved anywhere too? I wanted to snag a few but the site's been gone forever.
  10. Just edit this, make up a new formula that does what you want. val1 is used as the Skill level btw. val3 = 50*(val1+1);
  11. I'm a bit unsure on how to use this, because it takes an int value for the 2nd parameter where "char_var" is, so I can't use my actual variable name. If I try using a variable name without the quotes, it says it's unidentified.
  12. function script F_GiftBoxFunc { set .@rand, rand(1,2); if (.@rand == 1) { set .@ItemID, rand(5001,5004); } else { set .@ItemID, rand(5050,5080); } GetItem( .@ItemID, 1 ); Announce( "" + strcharinfo(0) + " opened a headgear box and got: " + GetItemName( .@ItemID ) + " !", BC_ALL ); end; }
  13. You're editing the wrong values. You should leave the min and max alone. Here's an example item_rate_common: 3000 item_rate_common_boss: 3000 item_drop_common_min: 1 item_drop_common_max: 10000 This would be for a 30x server.
  14. Here's the simplest example I can think of. You do a quest, at the end the NPC sets a variable to 1 instead of 0. In the source code, is there a way to actually check this variable for use in a function?
  15. In itemdb.h, there's a line that says this, inside of struct item_data uint16 nameid; You need to change nameid from uint16 to a variable type that can hold a larger number total. And then change this #define MAX_ITEMDB 0x8000 to this #define MAX_ITEMDB 0x10000
  16. function script F_GiftBoxFunc { set .@ItemID, rand(5001,5004); GetItem( .@ItemID, 1 ); Announce( "" + strcharinfo(0) + " opened a headgear box and got: " + GetItemName( .@ItemID ) + " !", BC_ALL ); end; } Like that you mean?
  17. Well it was a 2 part question. Is your server (rathena and everything) hosted on a vps or such somewhere? Or on your computer? You answered the part about MySQL being on your computer. And that error is really simply your webhost not being allowed to connect to your computer. Probably a firewall issue.
  18. So wait, is your server online? Or run locally on your computer? And your fluxCP is the only part that's on the web?
  19. ...when using Renewal content with Pre-Re formulas? I have seen several servers like this and they all wind up being horribly broken and not lasting long at all. Though it's kinda funny when you start dealing damage so high the counter stops at 999,999. For example, Reading Spellbook + Comet book is incredibly cheap, you can cast Comet so frequently and deal so much damage to everything.
  20. What client date are you using?
  21. You can just copy and paste the code from FSK into that, but edit the damage part to be 0. Can I ask why you want Create Nugget to be a teleporting skill? lol
  22. This would require client editing I believe.
  23. If you run RO at too high of a resolution, the screenshots don't work properly.
×
×
  • Create New...