Jump to content

kittypryde

Members
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Gender
    Female
  • Location
    Philippines
  • Server
    BloodlineRO
  • Github: NA
  • Discord: mommy.coco
  • Interests
    Game dev

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

kittypryde's Achievements

Poring

Poring (1/15)

  • One Month Later
  • Week One Done
  • Conversation Starter

Recent Badges

0

Reputation

  1. Hello I'm using this warper npc script: https://github.com/rathena/rathena/blob/master/npc/custom/warper.txt I'd like to seek assistance with modifying the script so that the town warps will cost 2,000 zeny and the dungeon warps will cost 5,000 zeny. Also I'd like to know how to make it free for VIPs. I was able to put town warp cost by adding this: function Go { if (select("Pay 20k Zeny", "Cancel") == 2) close3; if (Zeny < 20000) { mes "You don't have enough Zeny."; close3; } Zeny -= 20000; close2; set lastwarp$, getarg(0); set lastwarpx, getarg(1,0); set lastwarpy, getarg(2,0); warp getarg(0),getarg(1,0),getarg(2,0); end; } But I'd like to know how I can make it so that dungeon warps will cost 5,000 zeny. And is there any modification to the script that will make it so that all dungeon warps will be redirected to only 1st floor of the dungeon? Thank you.
  2. Hello guys, I'm a newbie in RO dev. I have successfully made an offline server and I have some questions. 1. How do I add custom items to the server? 2. How do I do episode jump? Like currently Morocc is destroyed and I want to start with episode 9 I think. 3. How do I customize the rates of the server? Sorry I know these are all basic stuff, I'll read more into it but I do hope to get some responses as well. Thank you! I'm using mySQL and nemo and I also do have a 2018 kRO client.
×
×
  • Create New...