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

    • It seems the author is simply not familiar with what l2-scripts and Bonux represents today. His opinion is likely based on our older materials — which is understandable. We haven't been standing still. Over the years, the studio has moved to a fundamentally different level of development. Our early builds are still available on the legacy site at very accessible prices — and they remain entirely viable for launching a project. As practice shows, solid servers can still be built on them, albeit with greater effort. As for the market — Classic, Essence, and Main have long been running on l2-scripts engines, and the majority of successful servers have, at one stage or another, used our source code as their foundation. This isn't self-promotion — it's the history of the industry. Today, for established projects with a reputation, we offer a different format: private partnership with individual terms tailored to your business goals. If you're interested in long-term collaboration — we're open to the conversation. We have solutions for every level — from newcomers to top-tier projects. Feel free to reach out, and we'll be happy to discuss.
    • implemented Black Market NPC that can copy and make discount on desired multisells , spawns despawns and fully configurable with schedule and random timer   implemented Dungeon Finder , fully configurable for custom dungeons and can be accessed from 2-9 party size. Your choice! 
    • https://en.l2oops.com/chronicle/lineage-2-essence   almost all the servers on here are using l2scripts or bonux files..
    • Before you jump on anything with limited slots, I’d just make sure you’re thinking about safety. I once tried a Fortnite Cronus Zen script in Creative mode only, just to test controller feel, and even then I was careful because anything that gives unfair advantages can put accounts at risk. Solid performance is great, but long‑term safety matters more than flashy features.
    • SkyLord, we don't disclose client projects — that's standard practice in private development. If you were expecting us to drop server names on a public forum, that tells me you don't have much experience with how professional work actually operates. The antibot you're referencing is old. It has been updated and improved. What you saw then is not what exists now. The web panel — we don't have one, never sold one. We have a master account system that is actively maintained and improved every year. You either bought from someone else or you're confusing products. You're free to have opinions. But opinions without evidence are just noise. You haven't pointed to a single failed project or dissatisfied client — just old memories and assumptions. We've been doing this for 20 years. We're not going to start justifying ourselves to someone who has never worked with us and has no actual proof of anything. Focus on your own work — that's the most productive thing you can do here. And please — keep this thread clean and don't interfere with other people's work. Those who make a habit of trashing others usually have nothing worth showing themselves. Create a separate theme where you will advertise your server.   PS:   Interesting that the person questioning our quality has relaunched their project over 50 times. Maybe that's exactly why it keeps relaunching. Our contacts are in the first post — happy to help. 😉  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..