-
Content Count
116 -
Joined
-
Last visited
-
Days Won
10
-
The Server is Officially Live! The wait is over—the server is now online and ready for you to dive in! Gather your friends, gear up, and join us in-game to kick off this epic adventure. If you encounter any bugs or issues, please report them immediately so we can address them swiftly and ensure smooth gameplay for everyone. Download Client - 2025-01-04 MEGA Google Drive Dropbox For updates, announcements, and to connect with the community, join us on Discord: https://discord.sky-pirates.net/ Note: Please if you find any bugs or issues, please report them right away so we can fix them quickly and avoid having to wipe or rollback the server database. Thank you for your support and we can't wait to see you in-game!
-
Hey everyone, There’s an issue with almost all Corsair source files in which after entering maps and teleporting many times will cause crash. I’ve replicated it making my character auto teleport to Argent/Shaitan/Icicle and in less than 10 minutes my client crashes so I decided to debug and I got this: it seems this is something related to a topic Mothanna was talking about before: any ideas ? my discord: uaexstorm
-
Sky Pirates Online - A New Era Welcome aboard! We're thrilled to have you with us on Sky Pirates Online, a medium-rate server specializing in PvP and PvE gameplay. Our goal is to stay true to the spirit of Tales of Pirates while introducing fresh elements, new features, and exciting mechanics. Get ready for intense battles and epic challenges where only the strongest pirates rise to the top. Whether you're locked in fierce duels or leading your guild to victory, the action never stops! 1. Links Website: https://sky-pirates.net/ Discord: https://discord.sky-pirates.net/ Facebook: https://www.fb.com/skypiratesonline 2. Game Information Server Difficulty: Medium | PK Server Server Rates: Instant Level: 75 Spend gold till you reach Max Level 100 Max Fairy Level: 40 Use Improved Fruits to reach Level 60 afterward Drop Rate: 1x (On weekends: 1.5x) Fairy Growth: 300x 3. Main Cities Argent City Shaitan City Icicle City 4. Features Medium Type Server Fully PvP & PvE Focused Balanced PvP/PvE Gameplay New Client & Server Files New User Interface New & coming back PvP/PvE maps Daily Missions Stackable Gems Offline Stall Inspect Equip Name Change Guild System Achievements System Titles System Portal Timer Daily Login Reward Anti Mud Tweak Weekly PvP Ranking PvP Streaks System In-Game Commands Custom Discord Bot & much more to find out 5. Currency SPO Card: Obtainable from Mazes and Events Chaos Emblem: Obtainable from any Chaos Mazes Gems: Obtainable from Mazes Golden Crystals: Obtainable from DS/DW 6. Money Ways Selling Wood, Iron Ore, and Land Fishing Fairy Coin, Signet, and Royal Signet Daily Quests Killing monsters inside DS/DW/Silver Mine 7. Leveling Max Level: 100 Instant Power Level to 75 Use gold to level up 8. Leveling Chaos Argent Chaos Dream Valley Of Death Dark Swamp Demonic World Abaddon 5-8 Instance Bounty Hunter In this map, players will have the same stats, forging, skills, etc., according to their Class. The only thing that differs is: Fairy level, Poss, and Potions. 9. Blacksmith & Gems Stabilizer, Strengthening Crystal, and Pliers received quality-of-life changes and can now be used instantly. Maximum Gem Level: 6 Forging Rate: 100% Normal, Unique, Advanced Gems are sold for gold in Gem Trader. Great, Ring, and BD Gems can be exchanged for vouchers in Gem Trader. Gems are now Stackable (No need to combine; instant forge). 10. Gem Ways Great & Ring Gems: Obtainable from Mazes. BD Gems: Obtainable from BD Mobs inside Chaos Argent. Hunting Chests. Winning Mazes. Demonic World/Dark Swamp. 11. Bossing The boss drop system has been completely revamped. A split drop system identifies the top 5 players based on damage dealt, ranked from highest to lowest. Rewards are distributed based on this “Boss Damage Ranking.” 12. Drop Rates Update Global Drop Rate: Base rate is 1x. Amp of Luck: Boosts drop rate by 1.5x. Fairy Body (Poss): Drop rate gets a boost based on skill level. Weekends: Friday to Sunday, the rate increases to 1.5x. Special thanks to everyone who contributed to this project: the Corsair Team, Ninja, Mothanna, Derick, Wantows, the SPO Team, and all the players
-
Anyone knows about this issue, it's apparently in Corsair files? If none, please close this topic.
-
up. Hit me for any hints or if you have fix for this issue. Discord uaexstorm
-
Hello everyone, I am planning to launch a medium type server soon and I’ve almost everything ready but I’m facing couple of issues so I’m seeking if any devs around knows about Corsair source? Here are the issues I'm currently facing: 1. Ami is not visible in the character selection screen when in fullscreen mode. 2. Skills disappear from skill bag, attack takes couple of seconds to affect. 3. Clients Disconnection and Crashes occurs randomly. 4. Effects and glows get stuck not moving. (https://pkodev.net/topic/7650-effectsglows-stuck/) Also if anyone knows some specific bugs/glitches for Corsair source do tell me. Please DM me in Discord: uaexstorm Thanks a lot
-
bump. In case you're wondering, Mordo "lines" effect is stuck.
-
If anyone knows the solution please hit me up on discord: uaexstorm And if necessary I’ll pay you through PayPal
-
Hey everyone, I'm using corsair source files and I've came across this issue which most of effects/glows can get stuck. In the following example, you will notice "Intense Magic" buff gets stuck (not moving), as well for the Crimson swords apparel "circle" isn't moving but stuck. To solve this issue, I will need to: 1. Restarting the client or de-equip then equip back 2. Teleporting/Switching character can also fix it 3. Close client & re-login Note that this is only temporary fix which will occur again upon playing the game.
-
@kyleflow Hello, I've written this code it should work pretty well replace this code to yours. Haven't tested it, try it and let me know the results. If player has Harden skill activated, the following will be applied: 1. Player will gain additional defense stat according to gained spr 2. Player will gain x2 defense stat if Fairy Body skill (Poss) is active 3. Once buff wears off all of the additional stats will go back to normal function Skill_Shpf_End(ATKER, DEFER, sklv) local statelv = sklv local statetime = 600 AddState(ATKER, DEFER, STATE_SHPF, statelv, statetime) end function State_Shpf_Add(role, statelv) -- Spr local spr_dif = 0 -- Grants additonal stat for gained Spr spr_dif = spr_dif + Sta(role) -- Check fairy poss if active will grant x2 for i = 168,174 do if(GetChaStateLv(role,i) ~= 0)then spr_dif = math.floor(spr_dif * 2) end end local def_dif = 10 + spr_dif + (statelv * 4) local def = DefSb(role) + def_dif SetCharaAttr(def, role, ATTR_STATEV_DEF) ALLExAttrSet(role) end function State_Shpf_Rem(role, statelv) -- Spr local spr_dif = 0 -- Grants additonal stat for gained Spr spr_dif = spr_dif + Sta(role) -- Check fairy poss if active will grant x2 for i = 168,174 do if(GetChaStateLv(role,i) ~= 0)then spr_dif = math.floor(spr_dif * 2) end end local def_dif = 10 + spr_dif + (statelv * 4) local def = DefSb(role) - def_dif SetCharaAttr(def, role, ATTR_STATEV_DEF) ALLExAttrSet(role) end
-
Hey, Try to change the first "if" statement line to this one, it should work - you need to use brackets ( ) if( (Dina_x2_ID == 8913) and (Dina_x1_ID == 2569 or Dina_x1_Fusion_ID == 2569) )then