Jump to content

Recommended Posts

Posted
Changeset 265

 

Misc

- fix GoldenRam issue.

- fix 2 CW issues (when player drops it).

- correct implementation of shift click, with use of inheritance.

- addition of item shift+click possibility for GMs, HTMlize static object shift+click for GMs.

- fix mercenary tickets pickup (probably, couldn't test as we're in wrong 7signs period), optimize item pickup check aswell.

- move caches section upper than clan section, in order to avoid clans crests being deleted at server startup (as crest cache isn't yet initialized).

 


 

Changeset 266

 

L2OFF droplist, misc

 

Droplist

- parse L2OFF IL droplist. Go from 26881 to 29767 drops. A big ty to dEvilKinG for that work.

- Core side goes from SQL to XML aswell.

 

Misc

- fix AQ minions paralyze/silence.

- DatapackRoot config is dropped. I don't find any point to put your DP in another folder, added to that the config is probably bad integrated.

- fix a possible NPE if a RB got suicide skill (happen only when sahar got events ideas).

Posted

So guys , does anybody using this pack ?

How its works,I know Tryskell is doing really hard,good job.

But I just wonder how it goes in live server,anybody can say enything about it ?

Posted

So guys , does anybody using this pack ?

How its works,I know Tryskell is doing really hard,good job.

But I just wonder how it goes in live server,anybody can say enything about it ?

it's pretty damn hard to read, right ?

http://acis.i-live.eu/index.php?board=39.0

Posted

So guys , does anybody using this pack ?

How its works,I know Tryskell is doing really hard,good job.

But I just wonder how it goes in live server,anybody can say enything about it ?

I will tell you how it works.

 

If you want to open a pvp server fast and earn some sweet money, then the best choice is frozen. It provides you with many customs, so it will save you from all the trouble of finding or writting custom features which is taking a lot of time.

 

That's what most people choose.

 

If you look for something more sophisticated, and you dont really care about fast money, and you have the patient to sit down and spend many hours doing many customisations in order to open a server, aCis is for you. Because, Tryskell's target is making things work like retail. But the truth is that people dont really care about retail stuff in interlude nowadays.

 

So, here are the servers which work with aCis:

http://acis.i-live.eu/index.php?board=39.0

 

And the servers which work with frozen:

http://www.l2jfrozen.com/index.php?board=14.0

Posted
So guys , does anybody using this pack ?

How its works,I know Tryskell is doing really hard,good job.

But I just wonder how it goes in live server,anybody can say enything about it ?

aCis is pretty good so far, using it for around a month on a live server, feel free to join http://l2rival.com ;)

Posted

beside the fact that you are reported for being offtopic.

 

u r wrong. fast money aren't made with a project that give u errors every 2 seconds and no working feature.

 

a good server from my pov require money to be invested in, no matter if you are doing it for some high quality machines or for ppl to code u stuff.

if you are too lazy to code or at least implement the codes into the server, then u should be ready to pay ppl for doing it. this, as much time as you are sure that you will get "fast money" after the server get live...

 

what you are talking about is opening a phantom server with QQ donations where all kids donate for 1 month and after u close it.

if u like to scam instead of opening a STABLE server, its up to you.

 

 

EDIT: and no, broken is better than aCis in NOTHING.

from my pov, broken is just a piece of bread that somebody throw it to a dog. is just a piece of junk good for nothing that only the lazy or mentally retarded ppl take it because they can't or they don't want to "work" (and this work ain't smth hard concerning us, but again, ppl expect a rar file which u 2click it and Voila a successfully easy money maker server) .

Posted

EDIT: and no, broken is better than aCis in NOTHING.

from my pov, broken is just a piece of bread that somebody throw it to a dog. is just a piece of junk good for nothing that only the lazy or mentally retarded ppl take it because they can't or they don't want to "work" (and this work ain't smth hard concerning us, but again, ppl expect a rar file which u 2click it and Voila a successfully easy money maker server) .

Pathetic.

Posted

Pathetic.

 

People who can code/apply a custom are not ready to open a server, if something occurs then they won't be able to fix it and they're server will fail. Sido said well, "if you are too lazy to code or at least implement the codes into the server, then u should be ready to pay ppl for doing it." This is a big truth.

 

Pauler: You encourage people making servers for money, you can see every day new servers opening, and every day closing. This is totally wrong. If you want money you need to spend either money or time. You need to work.

 

Anyway...

 

About aCis: Soon coming some "big bang" revs.

Posted
Changeset 268

 

Hasha quest engine cleanup.

 

Quest

- QuestEventType class to its own class.

- sorted all methods by groups (I suggest to create "//INFO: this is some info for text below" tag for the GS,DP pack projects).

- dropped "character_quest_global_data" table, since it only written in 2 quests (never read).

- removed "class_index" column in "character_quests" (never used).

- global quest variables methods unified for simpler usage.

- dropped some method concerning quest load/close (not used).

- added isRealQuest() method to separate scripts from live quest. That means every live quest needs to have _Id > 0.

- method changes :

- player handling filters player with desired quest state or condition :

- getRandomPartyMember() now includes a range check.

- checkPlayerCondition/State() last hit drops.

- getPartyMembers/State() full party last hit (can be used directly in FOR loop).

- getRandomPartyMember/State() party random.

- getClanLeaderQuestState() concerned range check set to npc, not player anymore.

- spawn, timer handling :

- cleaned up, unified usage for these methods.

- dropped methods with same name and different parameters (now you have one method and fill all necessary params in it -> clear usage).

 

State

- added in QuestState class.

- changed quest state storage type in "character_quests" table from String to Byte.

 

QuestState

- these methods created/modified

- item handling (usable during quest) :

- giveItems() simply remove specified amount of items.

- takeItems() simply remove specified amount of items.

- drop handling (usable for quest item drop) :

- in order to support rate of dropping quest items, added drop type parameter to these methods (see javadoc tag).

- dropItemsAlways() amount is affected by Config.QUEST_RATE_DROP.

- dropItems() amount/chance are affected by dropType param and Config.QUEST_RATE_DROP .

- reward hanling (usable for quest rewards) :

- rewardItems() rewards player with items (config applied).

- rewardExpAndSp() rewards player with exp, sp (config applied).

- removed spawn and timer methods from this class, everything is handled in Quest directly (it wasn't necessary to use QuestState for it).

 

General

- fixed onTalk bug, where player could start quest from another NPC, than registered

 

---- IMPORTANT ----

 

For existing database, use attached sql command :

 

USE acis;

SET NAMES cp1250;

 

DROP TABLE IF EXISTS character_quest_global_data;

 

ALTER TABLE character_quests DROP COLUMN class_index;

 

UPDATE character_quests SET value='1' WHERE var='<state>' AND value='Start';

UPDATE character_quests SET value='2' WHERE var='<state>' AND value='Started';

UPDATE character_quests SET value='3' WHERE var='<state>' AND value='Completed';

 

---- EDIT TRYSKELL ----

 

Those are additions to original Hasha's notes'n'patch.

 

- added a check for custom scripts to avoid the reload state when they load, as they all use the same id.

- fix giveItems() behavior (was completely buggy, Hasha...).

- add few final keywords (cause I like them).

- ArrayList initializations are changed for primitive List, it's a bad use to use an "evolved form", as it limits possibilities. In the same spirit we could use directly "HashMap = new HashMap" for maps, but we don't.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • This post originally appeared on MmoGah. Odin: Valhalla Rising is an ambitious open-world MMORPG developed with Unreal Engine 4, offering breathtaking visuals and immersive gameplay. I will share everything you need to know before starting it.     Re-rolling In Odin, re-rolling isn't a practical strategy. Unlike most gacha games, where it's common to reset for better initial pulls, Odin focuses heavily on long-term growth. The earlier you begin playing and developing your character, the more advantages you'll gain over time. Instead of spending your efforts on re-rolling for ideal equipment, it's better to dive in and start progressing right away.   Server Selection Before starting your character, selecting a server is a crucial step. Since Odin doesn't support cross-server gameplay, coordinating with your friends, family, or guildmates is essential to ensure everyone creates their characters on the same server. Take the time to plan with your group beforehand. After deciding on a server, your next major choice will be picking a class.   Class Breakdown Odin features four primary starting classes: Warrior, Sorceress, Rogue, and Priest. Each class comes with its own distinct playstyle and unique strengths, so choose wisely, as your selection is permanent. However, even free-to-play players can create up to three characters on one server, giving you the flexibility to try different options and find the one that matches your preferences.   Quest and Leveling Once your character is created, your initial objective is to work through the main questline. This acts as both a tutorial and a method for early leveling. Odin simplifies the process with a convenient quest button that handles navigation, starts dialogues, and even enables auto-combat. This user-friendly feature allows beginners to grasp the basics of the game without feeling overloaded.   Auto Combat and No Kill-steal Mode Auto combat is an essential feature in Odin, enabling your character to battle monsters autonomously. This system allows you to effortlessly gain experience and loot, even while you're busy studying, cooking, or unwinding. To optimize its use, activate the no-kill-steal mode. This setting prevents your character from targeting monsters already engaged by other players, helping you avoid conflicts or potential PvP situations. However, if a quest becomes difficult to complete due to overcrowded areas, you can temporarily disable this mode to overcome the obstacle and move forward.   Item Management and Potions Don't overlook the importance of consumable items, especially health potions. These can be purchased, along with buffs, from general merchants in villages, and they play a crucial role in improving your combat efficiency and ensuring your survival. Always aim to keep a full stock of HP potions and carry buffs that boost attack, defense, or regeneration in batches of 5-10 for convenience.   Once you've acquired your consumables, assign them to your quick slots located at the bottom center of the screen. Swiping down activates these slots, and items like potions will automatically be used when necessary, so you don't need to worry about them mid-battle. Keep a close eye on your potion reserves, as running out during a tough fight could leave you vulnerable before reaching a safe area. In the early stages of the game, it's better to return to town for a restock if supplies are low rather than risking unnecessary defeats. You can also enable notifications to alert you when your health or potion count drops too low—a handy feature for staying prepared if your attention is elsewhere.   Leveling and AFK Farming Once you've mastered the fundamentals, the next step is to focus on leveling up and enhancing your character. Gaining levels is your primary source of progression early on, as it not only improves your stats but also unlocks crucial game features and new abilities. At this stage, simply sticking to the main questline provides a reliable and efficient way to gain experience.   Additionally, Odin includes a highly convenient idle feature called AFK mode. This allows your character to keep farming for resources and experience even when the game is closed, with a maximum duration of 8 hours per day. It's an excellent option for making progress while you're asleep, commuting, or otherwise occupied.   Gear Upgrades When the time comes to improve your gear, the initial focus should be on upgrading from normal-grade equipment to high-grade items. These provide significantly better stats and can be enhanced further to increase their effectiveness. Enhancing requires enhancement stones and gold, but it's important to stay within the safe enhancement limit. Attempting upgrades beyond this limit carries the risk of destroying your gear if the enhancement fails. Stick to safe enhancements until you've gained more experience and accumulated spare equipment to mitigate potential losses.   Skill Purchases When you've accumulated enough gold, it's time to invest in skills. These are crucial for enhancing your combat abilities and provide key benefits tailored to your class, whether it's increasing damage output, improving healing capabilities, or adding valuable utility. Before purchasing, ensure your character meets the level prerequisites for each skill. Your ultimate goal will be progressing through and completing the main questline in Midgard as you continue to develop your character.   Unlocking Jotenheim Finishing this milestone grants you access to the next region, Jetunheim, unlocking a variety of new content and challenges. This marks your first significant achievement in the game and is an essential early objective to strive for as you progress.   Joining a Guild Joining a guild is a highly beneficial step in Odin. Guilds not only provide opportunities for social interaction and group activities but also offer passive bonuses that can significantly enhance your gameplay. Even if you're not particularly active socially, being part of any guild is advantageous. The guild feature becomes accessible after completing Chapter 4, Quest 19 of the main story.   Guilds provide various perks, including buffs that scale with the guild's level. Additionally, you can earn guild coins by contributing through donations, quest completions, or regular logins. These coins can be exchanged for valuable rewards, such as epic-grade armor. The more you actively contribute to your guild, the greater the overall benefits for both you and the guild itself. Joining early and staying involved will undoubtedly strengthen your progression in the game.   Conclusion Here is the end of this beginners' guide. I hope these tips will help you level fast in Odin.
    • You can actually make a pseudomount code in your server, that way it can be displayed.. a friend made it for the l2off and i extended it a bit.. if u have l2off i might be able to help u on that
    • Discord : utchiha_market Telegram : https://t.me/utchiha_market Auto Buy Store : https://utchihamkt.mysellauth.com/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt
    • Chill guys, Guytis ain't competent enough to make malware even if he wanted to
  • Topics

×
×
  • Create New...