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

    • SocNet is now on Medium! Check out our new article showcasing the full potential of our store and SMM Panel! Article: Click   🚀 Promo code: MEDIUM5 (5% Discount)   ➡️ Online Store: Click ✅ ➡️ Telegram Bot: Click ✅ ➡️ SMM Panel: Click ✅   Regular customers receive additional discounts and promo codes!   Support: ➡️ Telegram: https://t.me/solomon_bog ✅ ➡️ Discord: https://discord.gg/y9AStFFsrh ✅ ➡️ WhatsApp: https://wa.me/79051904467 ✅ ➡️ Email: solomonbog@socnet.store ✅   ➡️ Telegram Channel: https://t.me/accsforyou_shop ✅   You can also contact us for: — Wholesale inquiries — Partnership opportunities (Current partners: https://socnet.bgng.io/partners )  — Becoming a supplier   SocNet — your store for digital goods and premium subscriptions ✅
    • SocNet is now on Medium! Check out our new article showcasing the full potential of our store and SMM Panel! Article: Click Promo code: MEDIUM5 (5% Discount) Online Store: Click Telegram Bot: Click SMM Panel: Click Regular customers receive additional discounts and promo codes! Support: Telegram: https://t.me/solomon_bog Discord: https://discord.gg/y9AStFFsrh WhatsApp: https://wa.me/79051904467 Email: solomonbog@socnet.store  Telegram Channel: https://t.me/accsforyou_shop You can also contact us for: — Wholesale inquiries — Partnership opportunities (Current partners: https://socnet.bgng.io/partners ) — Becoming a supplier SocNet — your store for digital goods and premium subscriptions  Want to expand your business network or promote services through the largest B2B platform? LinkedIn accounts are your tool for marketing, recruiting, and outreach automation. Perfect for SMM, hiring, lead generation, and business scaling. ➡ Ready-made accounts — fast, convenient, no hassle. Promo code: LINKEDIN5 (5% discount) Payment: Bank cards · Cryptocurrency · Other popular methods How to buy: ➡ Online Store: Click ➡ Telegram Bot: Click Other services: ➡ SMM Panel: Click Product range: ➡ LINKEDIN.COM ACCOUNTS | EMAIL INCLUDED @OUTLOOK.COM / @HOTMAIL.COM / @FIRSTMAIL.COM, MALE OR FEMALE, PARTIALLY FILLED PROFILES, REGISTERED FROM USA IP | Price from: $2.5 ➡ LINKEDIN.COM ACCOUNTS | EMAIL INCLUDED @OUTLOOK.COM / @HOTMAIL.COM / @FIRSTMAIL.COM, MALE OR FEMALE, PARTIALLY FILLED PROFILES, REGISTERED FROM EUROPE IP | Price from: $2.5 ➡ LINKEDIN.COM ACCOUNTS | EMAIL INCLUDED @OUTLOOK.COM / @HOTMAIL.COM / @FIRSTMAIL.COM, MALE OR FEMALE, PARTIALLY FILLED PROFILES, REGISTERED FROM MIX IP | Price from: $2.5 ➡ LinkedIn Old Brute Account with Real Connections (0 connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $10 ➡ LinkedIn Premium Brute Account (Premium) with active 1-month Premium subscription | Geo: MIX | Registered on real device | Full account access | Price from: $20 ➡ LinkedIn Old Brute Account with Real Connections (50 connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $20 ➡ LinkedIn Old Brute Account with Real Connections (100+ connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $39 ➡ LinkedIn Old Brute Account with Real Connections (500+ connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $69 ➡ LinkedIn Verified Brute Account with verified documents | Geo: MIX | Registered on real device | Full account access | Price from: $89 Loyal customers — additional discounts and promo codes! Support: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop Also via these contacts you can: — Consult about wholesale purchases — Set up a partnership (current partners: https://socnet.bgng.io/partners ) — Become our supplier SocNet — Digital Goods and Premium Subscriptions Store
    • SocNet is now on Medium! Check out our new article showcasing the full potential of our store and SMM Panel! Article: Click Promo code: MEDIUM5 (5% Discount) Online Store: Click Telegram Bot: Click SMM Panel: Click Regular customers receive additional discounts and promo codes! Support: Telegram: https://t.me/solomon_bog Discord: https://discord.gg/y9AStFFsrh WhatsApp: https://wa.me/79051904467 Email: solomonbog@socnet.store  Telegram Channel: https://t.me/accsforyou_shop You can also contact us for: — Wholesale inquiries — Partnership opportunities (Current partners: https://socnet.bgng.io/partners ) — Becoming a supplier SocNet — your store for digital goods and premium subscriptions  Want to expand your business network or promote services through the largest B2B platform? LinkedIn accounts are your tool for marketing, recruiting, and outreach automation. Perfect for SMM, hiring, lead generation, and business scaling. ➡ Ready-made accounts — fast, convenient, no hassle. Promo code: LINKEDIN5 (5% discount) Payment: Bank cards · Cryptocurrency · Other popular methods How to buy: ➡ Online Store: Click ➡ Telegram Bot: Click Other services: ➡ SMM Panel: Click Product range: ➡ LINKEDIN.COM ACCOUNTS | EMAIL INCLUDED @OUTLOOK.COM / @HOTMAIL.COM / @FIRSTMAIL.COM, MALE OR FEMALE, PARTIALLY FILLED PROFILES, REGISTERED FROM USA IP | Price from: $2.5 ➡ LINKEDIN.COM ACCOUNTS | EMAIL INCLUDED @OUTLOOK.COM / @HOTMAIL.COM / @FIRSTMAIL.COM, MALE OR FEMALE, PARTIALLY FILLED PROFILES, REGISTERED FROM EUROPE IP | Price from: $2.5 ➡ LINKEDIN.COM ACCOUNTS | EMAIL INCLUDED @OUTLOOK.COM / @HOTMAIL.COM / @FIRSTMAIL.COM, MALE OR FEMALE, PARTIALLY FILLED PROFILES, REGISTERED FROM MIX IP | Price from: $2.5 ➡ LinkedIn Old Brute Account with Real Connections (0 connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $10 ➡ LinkedIn Premium Brute Account (Premium) with active 1-month Premium subscription | Geo: MIX | Registered on real device | Full account access | Price from: $20 ➡ LinkedIn Old Brute Account with Real Connections (50 connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $20 ➡ LinkedIn Old Brute Account with Real Connections (100+ connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $39 ➡ LinkedIn Old Brute Account with Real Connections (500+ connections) | Mix Geo | Filled Profile | Registered on real device | Price from: $69 ➡ LinkedIn Verified Brute Account with verified documents | Geo: MIX | Registered on real device | Full account access | Price from: $89 Loyal customers — additional discounts and promo codes! Support: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop Also via these contacts you can: — Consult about wholesale purchases — Set up a partnership (current partners: https://socnet.bgng.io/partners ) — Become our supplier SocNet — Digital Goods and Premium Subscriptions Store
    • Buying & Selling Torn City Cash
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock