Jump to content

Skyzone

Members
  • Posts

    115
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Skyzone

  1. FIXED. It was just HTTP'S problem and to make sure to fixed all error logs on your data/logs Folder. after your fixed all in logs login your gm account on your site and find the Re Install.
  2. Hello I hope this will be help in the future that get the same problem that has no answer until now. this will be not solve in the latest rAsvn. #define MAX_EVENTQUEUE 2 that value is already set in the latest but I think its not work. I try some experiment I set it to this #define MAX_EVENTQUEUE 1000 but don't forget to backup your original src.
  3. Hello rADevs I have problem on my Donation Payment. I configure application.php already 'PayPalIpnUrl' => 'www.paypal.com', and already set my IPN on paypal. Notification URL https://myro.com/donate/notify I receive the payment on paypal but the player don't receive there credits. is there enything to configured? Im using latest Flux.
  4. the item suit is not same in the character. it is not the original suit.
  5. if i got my payout from my credit in rathena I will donate the Half of my payout this is great work in RO1 ^_^
  6. hello check the guide there is a video or else it is in your client side check your lua if correct. this post is for lua or lub client side.
  7. hello anyone have the copy of autoattack that compatible in the cpp? thanks in advance who give the script
  8. Good Day Rathena Devs I have problem on my VPS CentOS configuration. my Online Status Not Working on my VPS, I already put the IP on my Flux CP but it is not showing the Online Player and the Server Status in the site. How to configure it on CentOS 6+? I hope there is tutorial here. Advance Thanks to all Helping my Problem here.
  9. Anyone know where I can get a none CPP guide Installer of CentOS7. because my Trunk is 2013 I want the Old Guide of Installing of CentOS on VPS, Thank you in Advance.
  10. Thanks Maken. I already fixed the issue. this post will help to other soon ^_^
  11. Two things: First, the viewID must be the same as the ID on your sprite set in weapontable. Secondly, there's ID ranges for each kind of weapon. Weapon Sprite Solution (Renewal Clients <= 2012-04-10a & Main Clients <= 2012-07-10a) For these clients, Weapons are limited to use a range of Item IDs hardcoded in the clientn for each type. For e.g. 1265,Bloody_Roar,Bloody Roar,4,,10,1000,120,,1,0,4096,7,2,34,4,75,1,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bFlee,-160; bonus bFlee2,-160; bonus bNoRegen,1; bonus bNoRegen,2; },{},{} 1266,Test,Test,4,4000,2000,10,165,,1,0,4096,7,2,34,3,33,1,16,{} // 1-Handed Axes 1301,Axe,Axe,4,500,,800,38,,1,3,8803555,7,2,2,1,3,1,6,{} Here the item 1266 is a custom katar and it does show up as a katar (if you have the proper sprite files ofcourse). but if i use some id like say 22000, client wont display it. So what is the range of item ids you can use? Look below: One handed Swords = 1100-1149, 13400-13499 Two handed Swords = 1150-1199, 21000-21999 Knives, Daggers etc = 1200-1249, 13000-13099 Katars = 1250-1299 ; Has 35 free IDs One handed Axes = 1300-1349; Has 43 free IDs Two handed Axes = 1350-1399; Has 32 free IDs One handed Spears = 1400-1449; Has 34 free IDs Two Handed Spears = 1450-1471, 1474-1499 Maces = 1500-1549, 16000-16999 Books = 1550-1599 ; Has only 2 IDs. Knuckles = 1800-1899 ; Has 95 free IDs One Handed Staves/Rods = 1600-1699; Has 79 free IDs Two Handed Staves/Rods = 1472,1473,2000-2099 Bows = 1700-1749, 18100-18499 Guitars = 1900-1949 ; Has 32 free IDs Whips = 1950-1999 ; Has 130 free IDs Handguns = 13100-13149 Other guns = 13150-13199 Ninja weapons = 13300-13399 The number of unused Item IDs left known for a range has also been mentioned above. Best practice to follow check in your range in official db before adding custom weapon. Weapon Sprite Solution (For New Clients) For new clients the view id system is also applicable to client. To add a custom weapon you need to first edit a file called weapontable.lub in your data folder data/luafiles514/lua files/datainfo/weapontable.lub I will be adding Oriental_Sword which will be a 1-Handed sword. Open weapontable.lub. First you will see a table called Weapon_IDs. Take note of the first 30 values in this table - these are the only available Weapon types in the client right now. Anyways go to the last entry which should be for Wizardy Staff = 97. You can use a view id after that like shown below WEAPONTYPE_Oriental_Sword = 98, Come down and you see the next table called WeaponNameTable. Here is where you add your sprite name suffix. What do i mean by that? Its the last part in your weapon sprite & act file. Before it used to be _<Item ID>. data/sprite/<job dependent folder>/<job dependent prefix>_<gender><weapon suffix>.spr OK Back to topic. so I add my entry like shown below. [Weapon_IDs.WEAPONTYPE_Oriental_Sword] = "Oriental" Lastly come down further in weapontable.lub and you see the last table called Expansion_Weapon_IDs. Remember the 30 types i told you to take note of ? here we assign one of those to our custom (like a mapping or connection). Since mine is a 1-Handed Sword I specify it like below. [Weapon_IDs.WEAPONTYPE_Oriental_Sword] = Weapon_IDs.WPCLASS_WEAPONTYPE_SWORD Now for the most important part. For our client to actually pick up all these details we need to provide the view id which we used in Weapon_IDs table as the ClassNum value in ItemInfo.lua. Check the ItemInfo.lub format shown above for details. With this your weapon sprite will become visible while attacking. @Haziel post. I forgot this about there are range for weapons
  12. Hello rAthena Devs, Any hint why my Custom Weapons Not Showing after I down grade to the 2012. before I use 2013.
  13. Thanks to you I use this but for now this is good :0
  14. Wow Thanks @Haziel. you the best ^_^...
  15. hello rAthena Devs, I need help to convert my lub description to idnumnumdescriptions. any can help me or give hint in the guides?
  16. you can change the cuttin by your self. so you can change the item ID and Qty by your self. depend on your editing on PSD image. if you dont get the sequence you. I can make for you but there is a charge for the editing.
  17. yes sir we have v.2.1 soon for the inputing the price on database. the v.2 you can set the price manually. and the item required too.
  18. View File Lucky Spin V.2 Spin the Roulette v.2 This Lucky Spin is not Include the VIP Manager to use the Free Daily Spin of VIP Account. [NPC CHOICES] If you want to purchase the Advance VIP Manager Only --> Click Here if you want to purchase same NPC it is good choice because less Tax --> Click Here NPC INFORMATION: Lucky Spin Coupon Seller. Setting Item ID and Required Amount (For Paid Spin). VIP Daily Lucky Spin. (Required a VIP Member Click Here) VIP NPC. (For Daily Spin)[Restart the Spin Every 12 Mid Night] (Required a VIP Member Click Here) VIP Member Ship (VIP 1 and 2) (Required a VIP Member Click Here) (VIP Bronze Member 7days | VIP Silver Member 15days | VIP Gold Member 30days) (Required a VIP Member Click Here) VIP Daily Reward NPC. (Required a VIP Member Click Here) SVN COMPATIBILITY: rAthena (tested) rAmod (tested) Hercules (tested) WHAT'S IN THE PACKAGE: Lucky Spin NPC Lucky Spin illust Lucky Spin Sound Lucky Spin PSD Design Someone request to separate NPC so you have now a choice to use this . Submitter Skyzone Submitted 04/20/2018 Category Games, Events, Quests Video Content Author Skyzone  
  19. Version 1.0.0

    42 downloads

    Spin the Roulette v.2 This Lucky Spin is not Include the VIP Manager to use the Free Daily Spin of VIP Account. [NPC CHOICES] If you want to purchase the Advance VIP Manager Only --> Click Here if you want to purchase same NPC it is good choice because less Tax --> Click Here NPC INFORMATION: Lucky Spin Coupon Seller. Setting Item ID and Required Amount (For Paid Spin). VIP Daily Lucky Spin. (Required a VIP Member Click Here) VIP NPC. (For Daily Spin)[Restart the Spin Every 12 Mid Night] (Required a VIP Member Click Here) VIP Member Ship (VIP 1 and 2) (Required a VIP Member Click Here) (VIP Bronze Member 7days | VIP Silver Member 15days | VIP Gold Member 30days) (Required a VIP Member Click Here) VIP Daily Reward NPC. (Required a VIP Member Click Here) SVN COMPATIBILITY: rAthena (tested) rAmod (tested) Hercules (tested) WHAT'S IN THE PACKAGE: Lucky Spin NPC Lucky Spin illust Lucky Spin Sound Lucky Spin PSD Design Someone request to separate NPC so you have now a choice to use this .
    $10.00
  20. wow nice I will apply that on my PUBG Event NPC my Gunslinger Wars
  21. Wow This is good for my New Battleground NPC Useful for my PUBG Intense Event I will release soon on rathena Base my Work on PUBG. is this Release Already? or it is work in progress?
  22. wow is that legit Zephyrus? I'am eAmod and rAmod user and also I sold it on eamod site i think it is 150$ I forgot the price but when you buy it from there site it is free for Update when you sold it there. Good Luck Zephy I will always support your Team also rAthena too some of my private script I will put it here starting last day. I will compile and segregate some of my script. and also my BG 2.1 that I modify but not shared to other's
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.