Jump to content

sylwuu

Members
  • Posts

    26
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About sylwuu

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

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

sylwuu's Achievements

  1. Rates: Exp: 20 Sp: 20 Drop: 10 Spoil: 10 Adena: 10 Feautures: GmShop up to S Grade NPC Buffer 1st, 2nd 3rd profession without quest Subclass without quset Subclass limit: 3 Auto learn skills Multiclient allowed up to 3 windows Buffs limit: 28 Songs and dances limit: 12 Buffs/Songs/Dances duration: 2 hours Special Feautures: Donate is disabled for all season Premium etc obtainable in game only. Convenient community board with all custom feautures .party system Private store connected with auction house Auto Potions System (type .potion in game) Crystal Enchant Scrolls - Don't break on fail up to +12 Shift + click on mob to show drop list Custom anti-bot protection (Adrenaline, L2Walker, L2Tower, L2Phx, etc) Enchants Enchant Scroll Chance: 60% Blessed Enchant Scroll Chance: 60% Crystal Enchant Scroll Chance: 55% Hardware & software Dedicated server (not vps) - Intel Xeon-E 2136 - 6c/12t - 3.3 GHz/4.5 GHz , 64GB DDR4, 2×500 GB SSD NVMe Server location: Frankfurt, Deutschland Server distribution: Latest L2jServer (March 6, 2022) Anti-DDos: 1Tbps+ Protection Open Beta 18 - 30 March Grand Opening 1 April About us: We’ve been working on on that server since 03/12/20 and it's finally coming to an end. The reason of starting this project was very simple - just before working on it, one of the most known mid rate servers started thus me and my friend came back to playing the game After a longer break. For a few days i’ve been feeling like a kid - playing all day, all night and a game progress and first places on tvt, made me sink in this world even more. One of the most beautiful things, hovewer the gridiness of administration reminded about itself pretty fast. After just a few days with appearance of donations from first places, i dropped to those closer to and end. My eq scored until now, were not only not enough but just ridiculous and After 10 days server was almost empty. That’s why i would like to present server L2RaidCore. Server, where you will never have the option to buy eq in the item shop, or atributes or any other improvers. On the first season - there will be no donations. Special coins (Raidcoin), which you could buy premium items, you can gain only in the game. Almost everything customs in the server was written from scratch, which is why it took so long. Therefore, we are ready to start. There was a word „season” earlier - and yes it means that After some time there will be a wipe. The lenght of the season is for you to decide, how active you will be so it can work for a month, few moths or even longer. We are the only ones who offer you honest entertainment and additionaly with the opening open beta, we start a advertising campaign: YouTube, Facebook, hopzone, maxcheaters and that’s why we are expecting the quantity of players that world has never seen before! Check us out https://L2RaidCore.com
  2. Hello. From yesterday i have a strange situation. I tried to modify my server name first through servername.xml in login but i found the correct way is through servername-e.dat From this moment my in game server list is empty but in logs everything is correct. When i turn on only login server list display a server and running game server makes it blank. I return to my previous files but without effect. What did I miss? Edit: Resolved. Something was wrong in configuration folder of gameserver. I replace with clean and its fine again
  3. Hello, I'm trying to add disable soulshots/spiritshots effects option to player menu to improve game performance and i'm stuck. I searching answer across the internet and this forum but things that i'm tried can't be implemented in l2jserver. Change broadcast gave me almost nothig. The same with listening of client packets. The only working thing is to change broadcasting in soulshot handler but it works only on weapon and expolosion on target is still visible. Is it possible to disable it on server side? Best regards
  4. Hello, i'm working on premium account and i need a little help. I created a database table with premium account data and this data is loaded on player login. As i saw in L2Attackable.java there is a method doItemDrop and line deathItems = npcTemplate.calculateDrops(DropListScope.DEATH, this, player); so i added if (player.hasPremium()) { deathItems = npcTemplate.calculateDrops(DropListScope.PREMIUMDEATH, this, player); } else{ deathItems = npcTemplate.calculateDrops(DropListScope.DEATH, this, player); } To DropListScope i added PREMIUMDEATH((itemId, min, max, chance) -> new GeneralDropItem(itemId, min, max, chance, IAmountMultiplierStrategy.PREMIUMDROP, IChanceMultiplierStrategy.PREMIUMDROP), GroupedGeneralDropItem::new), To IAmountMultiplierStrategy.java i added IAmountMultiplierStrategy PREMIUMDROP = DEFAULT_STRATEGY(rates().getDeathDropAmountMultiplier() + rates().getDeathDropAmountMultiplier()/2); To IChanceMultiplierStrategy.java added IChanceMultiplierStrategy PREMIUMDROP = DEFAULT_STRATEGY(rates().getCorpseDropChanceMultiplier() + rates().getCorpseDropChanceMultiplier()/2); Now there is no drop for premium users at all but still works for users w/o premium. Am I miss something or it's impossible to make it in this way? Best Wishes Update: Problem solved. I used standard DropListScope Death but i made changes in IChanceMultiplierStrategy DEFAULT_STRATEGY and IAmountMultiplierStrategy DEFAULT_STRATEGY methods. The trick was to add public property L2PcInstance killer (initialized before call getChanceMultiplier) and read data about premium using victim.killer in DEFAULT_STRATEGY
  5. On this subject everything went well. The topic can be closed I have a problem with something else but it's not related and I'll dig a little before ask for help Sorry for late reply Best Wishes
  6. Nice, now i now where to look thanks
  7. I need to know how to handle action after click on this small question mark. In your way after broadcast this message question mark appear but this is not what i need or i don't get how this things are connected
  8. Not quite, it's text passing as paremeter of BroadCast.toAllOnlinePlayers(new CreatureSay(0, Say2.PARTY, "[Party]" , text)); and in this way i receive question mark button in chat
  9. Thank you for your answer I put sendMessage to RequestTutorialQuestionMark and OnPlayerTutorialQuestionMark but it don't work for my button. Ofc I check it on tutorial button and i receive message so I think my chat button have a wrong type. I made chat button by "\b\tType=1 \tID=" + id + "\t \tColor=0 \tUnderline=0 \tTitle=\u001B\u001B\b" I already tried couple numbers for type but except above only Type=2 works and on click it's show empty black box but not handled like tutorial question mark. I'm tested another listeners from EventType class but i didn't found any connected to my question mark
  10. My mistake. Unfortunatelly i can't delete/move post
  11. Hello, today i'm working on party voice command system and i'm stuck. I broadcast message with question mark to all active players but I don't have idea how to detect click and handle it. I spend all day on it and message with button is all what i've done. I was trying to made custom listener but unsuccessfully. I don't even know is that possible. I'm looking for advice or direciton where to search in code something similar Best wishes
  12. I made easy console app to get this info from url and save it to database. Not best option but works Sory for late answer. Best wishes
  13. Hello, I'm working on auction house and I would like to show description and stats (like p.atk) of item in purchase page. I can parse xml's with item stats to get p. atk info etc but what with item description? I spend last few hours to find answer in code and google but so far i know the description is stored in client data. It's possible to get those informations through java code? All the best
  14. I've tested it on dye and it works Thank you very much
  15. Hello, I'm curently working on community board with stuff like from top mid rate servers. Buffer, Gm Shop (except sell option) and Gatekeeper weren't issue but i stuck at services like blacksmith, dye manager and warehouse. I tryied to bypass command from exisiting npcs like for augmentation: "bypass -h npc_%objectId%_Augment 1" but after button click nothing happends. Maybe someone more experienced could direct me on proper path how to handle this Edit: I'm using latest l2jserver distribution
×
×
  • Create New...