Jump to content

Recommended Posts

Posted

Γεια σε όλους.

Πολλοί απο εσάς σίγουρα χρειάζονται java mods ή διάφορα fixes σε bugs και τα σχετικα. Λοιπόν έχω μερικές γνώσεις στα εξής :

Java,Sql,Html(ελάχιστη html , τα βασικά) κυρίως Java.

Εδώ μπορείτε να ζητάτε οτιδήποτε σχετίζεται με core side , όπως ανέφερα παραπάνω διάφορα modifications για τον server σας ή ακομα και bugs , και εγώ θα σας τα κάνω και θα τα κάνω share σε αυτό εδώ το topic.Βέβαια μη περιμένετε κατι τρελό , όπως official mods(π.χ Community Board).

Να πω πως το κάνω για εξάσκηση επειδή εδώ και καιρό ήμουν εκτός PC, και ότι θα κάνω αυτό που ζητήσετε αρκεί να ξέρω τον τρόπο , αν όχι θα το ψάξω πάντως.

 

*Αν ζητήσετε fix για bug σιγουρευτείτε πως θα δώσετε αναλυτική περιγραφή του bug/exploit πρώτα, αλλιώς μάταια θα το κάνετε.

*Αν ζητήσετε οποιοδήποτε custom mod θέλετε , δώστε επίσης αναλυτική περιγραφή.

*Κάντε request εδώ και όχι σε PM.

 

 

Δέχομαι και την βοήθεια σας σε ορισμένα πράγματα,ομαδική δουλειά εχει καλύτερο αποτέλεσμα.Και μην ξεχνάτε ότι θέλω να βοηθήσω.

 

Ότι κάνω , το κάνω πάνω σε L2JServer C6.

 

Μην spammarete για κανένα λόγο αν δεν με γνωρίζετε.

 

Έχω χρόνο αρκετό και περιμένω...

Posted

Χθες μου ζητησες να σου φτιαξω κατι πολυ απλο αρχικα και τωρα κανεις τετοια τοπικ νομιζω οτι ειναι λιγο τραγικο..

Posted

Χθες μου ζητησες να σου φτιαξω κατι πολυ απλο αρχικα και τωρα κανεις τετοια τοπικ νομιζω οτι ειναι λιγο τραγικο..

Φιλε μου αυτο που σου ζητησα ηταν απλα HTML , δεν το ειχα συναντησει ποτε , τωρα το εμαθα ομως (χαρη σε σενα δεν αντιλεγω) και σε ευχαριστω για αυτο.Δεν ειπα οτι γνωριζω τα παντα, αλλα καποια πραγματα μπορω να τα κανω και να βοηθησω παιδια απο εδω κυριως newbies.
Posted

Απλα αναφερε οτι θα προσπαθησεις να φτιαξεις αυτο που θα σου ζητησουν αρκει να γνωριζεις το πως.

Posted

Απλα αναφερε οτι θα προσπαθησεις να φτιαξεις αυτο που θα σου ζητησουν αρκει να γνωριζεις το πως.

Εγινε , και να μην ξερω θα το ψαξω βεβαια και οτι καταφερω , δεχομαι και βοηθεια οπως ειπα ομως.
Posted

2q9x6o6.png

 

 

 

Το πρωτο request ηρθε και εκπληρωθηκε.

 

Κωδικας:


### Eclipse Workspace Patch 1.0
#P Chr.6GMS
Index: java/config/l2jmods.properties
===================================================================
--- java/config/l2jmods.properties	(revision 5263)
+++ java/config/l2jmods.properties	(working copy)
@@ -91,6 +91,11 @@
#Cost of Divorce, % of Adena
WeddingDivorceCosts=20

+#Custom Chat via PvPs
+AllowPvpChat = False
+#Pvps to talk there
+PvpsToChat = 500
+
#---------------------------------------------------------------
# Team vs. Team Event Engine (by FBIagent)                     -
#---------------------------------------------------------------
Index: java/net/sf/l2j/gameserver/clientpackets/Say2.java
===================================================================
--- java/net/sf/l2j/gameserver/clientpackets/Say2.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/clientpackets/Say2.java	(working copy)
@@ -233,6 +233,14 @@
                 }
                 break;
			case ALL:
+				if(Config.ALLOW_PVP_CHAT){
+					if(activeChar.getPvpKills() >= Config.PVPS_TO_CHAT)
+						if(_text.startsWith("~")){
+							String customChat = _text.substring(1);
+							for(L2PcInstance players : L2World.getInstance().getAllPlayers())
+								players.sendPacket(new CreatureSay(activeChar.getObjectId(),15,activeChar.getName(),customChat));
+						}
+				}
				if (_text.startsWith("."))
				{
					StringTokenizer st = new StringTokenizer(_text);
Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java	(revision 5263)
+++ java/net/sf/l2j/Config.java	(working copy)
@@ -881,7 +881,12 @@
     public static boolean L2JMOD_WEDDING_SAMESEX;
     public static boolean L2JMOD_WEDDING_FORMALWEAR;
     public static int L2JMOD_WEDDING_DIVORCE_COSTS;
+    
+    //pvp chat
+    public static boolean ALLOW_PVP_CHAT;
+    public static int PVPS_TO_CHAT;

+    
     // Packet information
     /** Count the a-beep-t of packets per minute ? */
     public static boolean  COUNT_PACKETS           = false;
@@ -1859,6 +1864,10 @@
                 L2JMOD_WEDDING_FORMALWEAR               = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True"));
                 L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));

+                
+                ALLOW_PVP_CHAT=Boolean.valueOf(L2JModSettings.getProperty("AllowPvpChat","False"));
+                PVPS_TO_CHAT=Integer.parseInt(L2JModSettings.getProperty("PvpsToChat","500"));
+                
                 if (TVT_EVENT_PARTICIPATION_NPC_ID == 0)
                 {
                     TVT_EVENT_ENABLED = false;

 

 

Προς sarras: Τωρα το κειμενο πρεπει να αρχιζει με ~ , αλλαξε το οπως θες.

 

 

Προς sarras και ολους:Καλυτερα να λετε εδω στο topic τα requests και οχι σε Pm.

 

 

Περιμενω για αλλα.

Posted

Euxaristw poly! Les Na Doulepsei se Freya??

δεν έχει λόγο να μην δουλέψει,απλά ίσως χρειαστούνε 2-3 μικροαλλαγες.
Posted

σιγουρεψου οτι εχεις περασει τα configs file πρωτα και κανε και save , δε θα βγαζει error.

Για αυτη τη σηρα:

for(L2PcInstance players : L2World.getInstance().getAllPlayers())

καντηνα

for(L2PcInstance players: L2World.getInstance().getAllPlayers().values())

 

 

Guest
This topic is now closed to further replies.



  • Posts

    • Продам комплекты (Custom Colour) Apella Сеты. Контакт со мной/Contact with me  Telegram. Custom Colour Apella Light YouTube Video
    • haha, I don't say it, chatgpt says it. discuss it with him if you have problems 😉 or sue chatgpt for lying, for example when he tells you that you are an idiot and tells you that I do things that are light years ahead of you.
    • hey i make enough to live comfortably you, on the other hand... doubt that'd be the case if you were as competent as you claim to be
    • all your doubts ask chatgpt, also ask what you could do yourself hahaha
    • 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.
  • Topics

×
×
  • Create New...