Jump to content

Recommended Posts

Posted

Γεια σας!

Ξέρω έχουν γίνει πολλοί τέτοιοι οδηγοί για το πως περνάμε έναν Java Code, αλλά θα ήθελα να δείξω με ακόμη περισσότερες λεπτομέρειες!

Εξάλλου τίποτα δεν πάει χαμένο!

 

Άνοιξε το Eclipse και πήγαινε στο SVN του Gameserver που κάναμε Checkout!

java1.png

 

 

Άνοιξέτο και κλίκαρε στο Java!

java2.png

 

 

Ok, τώρα βρες τον Java Code που θες, εγώ διάλεξα αυτόν: http://www.maxcheaters.com/forum/index.php?topic=121108.0

Index: /Server/SkyLanceR's_IL_GS/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- /Server/SkyLanceR's_IL_GS/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 345)
+++ /Server/SkyLanceR's_IL_GS/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 346)
@@ -8425,4 +8425,6 @@
     public boolean addSubClass(int classId, int classIndex)
     {
     	if (getTotalSubClasses() == 3 || classIndex == 0)
     		return false;
@@ -8430,4 +8432,8 @@
     	if (getSubClasses().containsKey(classIndex))
     		return false;
+    	
+    	startAbnormalEffect(L2Character.ABNORMAL_EFFECT_HOLD_1);
+    	setIsParalyzed(true);
+    	sendMessage("You are paralized untill your subclass load.");

     	// Note: Never change _classIndex in any method other than setActiveClass().
@@ -8492,4 +8498,8 @@
         if (Config.DEBUG)
             _log.info(getName() + " was given " + getAllSkills().length + " skills for their new sub class.");
+        
+        setIsParalyzed(false);
+        stopAbnormalEffect(L2Character.ABNORMAL_EFFECT_HOLD_1);
+        sendMessage("You are unparalized.");

         return true;

 

Τώρα πήγαινε στη διαδρομή που μας λέει!

java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java

java3x.png

 

 

Πήγαινε στο Java Code, και αντέγραψε αυτό.... Όπως στη φώτο.!

public boolean addSubClass(int classId, int classIndex)
     {
     	if (getTotalSubClasses() == 3 || classIndex == 0)
     		return false;

Photo:

java4.png

 

 

Άνοιξε το L2PcInstance.Java, Πάτα ( Ctrl & F ), Και επικόλληση ότι πήραμε αντιγραφή! Τώρα πάτα Find Όπως στη φώτο.

java5.png

 

Τώρα είσαι εδώ...

java6.png

 

 

Πήγαινε στο Java Code και αντέγραψε αυτό:

+    	
+    	startAbnormalEffect(L2Character.ABNORMAL_EFFECT_HOLD_1);
+    	setIsParalyzed(true);
+    	sendMessage("You are paralized untill your subclass load.");

Photo:

java7.png

 

 

Αφού έχεις αντιγραφή αυτό, κάντο επικόλληση κάτω από το: ( όπως στη φώτο )

      	if (getSubClasses().containsKey(classIndex))
     		return false;

 

Photo:

width=914 height=768http://img831.imageshack.us/img831/4956/java8.png[/img]

 

 

Αφού έκανες επικόλληση αυτό, διέγραψε όλα τα +

java9.png

 

 

Μετά θα είναι όπως εδώ:

java10.png

 

 

Τώρα, Πήγαινε στο Java Code και αντέγραψε αυτό: ( Όπως στη φώτο )

       

if (Config.DEBUG)
             _log.info(getName() + " was given " + getAllSkills().length + " skills for their new sub class.");

Photo:

java11.png

 

 

Πάτα ( Ctrl & F ), Και επικόλληση ότι πήραμε αντιγραφή! Τώρα πάτα Find ( Όπως στην φώτο.)

java12.png

 

 

Τώρα είσαι εδώ.

java13.png

 

 

Πήγαινε στο Java Code και αντέγραψε αυτό:

+        
+        setIsParalyzed(false);
+        stopAbnormalEffect(L2Character.ABNORMAL_EFFECT_HOLD_1);
+        sendMessage("You are unparalized.");

         return true;

Photo:

java14.png

 

 

Αφού έχεις αντιγραφή αυτό, κάντο επικόλληση κάτω από: ( Όπως στη φώτο )

_log.info(getName() + " was given " + getAllSkills().length + " skills for their new sub class.");

Photo:

java15.png

 

 

Μετά αφού έκανες επικόλληση αυτό, διέγραψε όλα τα +

java16.png

 

 

Μετά θα είναι όπως εδώ:

java17.png

 

 

Κάντο Save και κάνε ένα Compile!

java18.png

 

 

Τώρα πήγαινε στο Game και κάνε ένα Sub Class!

width=962 height=768http://img594.imageshack.us/img594/1478/parai.png[/img]

 

 

Σίγουρα θα αναρωτιέστε πως ξέρουμε τι να πάρουμε αντιγραφή και να το περάσουμε....

Όπως είδαμε μας έλεγε στον παρακάτω κώδικα να βρούμε αυτό και να το κάνουμε αντιγραφή..

 

@ @ @ @ 8425.6 -8425.4
     public boolean addSubClass (int classId, int classIndex)
     {
     if (getTotalSubClasses () == 3 | | classIndex == 0)
     return false;

 

Πάντα θα κοιτάμε αυτό " @ @ @ @ 8425.6 -8425.4 "

και έτσι παίρνουμε τον κώδικα που έχει αυτό από κάτω.

 

Στα Java Codes, ότι μας λέει + Το Προσθέτουμε, και ότι μας λέει - το αφαιρούμε!

Δηλαδή Κάνουμε αντικατάσταση το + με το -

Αυτό θα το συναντήσουμε όμως σε μερικούς κώδικες όχι σε όλους!

Τα + τα βγάζει κόκκινα, επειδή δεν είναι μέρος του κώδικα και γι'αυτό τον λόγο τα σβήνουμε!

 

Ελπίζω Να Βοήθησα Τους Newbies! Είναι εντελώς δικό μου, Όχι C/P

Credis: Me!

Posted

Εισαι για βρισιμο

πραγματικα

 

Τι αλλο guide εχει κανει η papaditsa;

Γιατί πρέπει να το'χω από εκεί?

Ρε φίλε, καμία σχέση. Το'χω περάσει και στο English Section.

Αφού χθες έκανα εκείνο με εικόνες είπα να κάνω και σήμερα.

Posted

sto topic s addare ama 8es kai auto

sta codes ta + kai ta  - kai otan pame na baloume ta codes exoun kati + sto eclipse kai bgazei error

giati?

loipon sto code oti mas leei + to addaroume oti mas leei - to sbinoume

sto eclipse bgazei kokkina ta + epeidh dn einai meros tou java(h alliws dn einai mesa stin glwssa tou java)

merika omos topics dn edoume + symbols

na 3erete to pio pi8anon einai na einai +

Posted

sto topic s addare ama 8es kai auto

sta codes ta + kai ta  - kai otan pame na baloume ta codes exoun kati + sto eclipse kai bgazei error

giati?

loipon sto code oti mas leei + to addaroume oti mas leei - to sbinoume

sto eclipse bgazei kokkina ta + epeidh dn einai meros tou java(h alliws dn einai mesa stin glwssa tou java)

merika omos topics dn edoume + symbols

na 3erete to pio pi8anon einai na einai +

Σωστός σχολιασμός!

Το έβαλα!

Posted

 

Φίλε έχει ξαναγίνει πολλές φορες share είσαι απο αυτους που αντιγράφουν δεν αξίζει να το κάνεις αυτό.

 

 

Posted

Φίλε έχει ξαναγίνει πολλές φορες share είσαι απο αυτους που αντιγράφουν δεν αξίζει να το κάνεις αυτό.

Όταν αντιγράφης σημαίνει ότι δεν ξέρεις, αλλά όπως βλέπεις έχω φώτο που δείχνει ότι το δοκιμάζω, οπότε δεν είχα λόγο να αντιγράψω!

Και το ότι έχουν γίνει πολλές φορές share δεν σημαίνει πως όταν το ξανακάνει ένας άλλος σημαίνει πως αντιγράφει!

 

  • 1 month later...

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

    • Even if I was reselling, as you claim, you got refunded down to the last penny. At least when I work with someone, I try to find a solution. Just because something didn’t work for you doesn’t mean it hasn’t worked for others. I’ve provided different kinds of services successfully, and I’ve even had several of your own clients come to me complaining about the mess you left behind, with unfinished code and ongoing issues.   Let’s be real. I supported you and always spoke positively about you until I realized that you only care about your wallet, not how your customers feel. That was disappointing. I don’t care much anymore, because some people change and some don’t. They stay comfortable being that way.   As for the family topic, I didn’t say anything bad or wrong. That was information I heard from a friend. And no, I won’t ban you. It’s not worth the energy to even open the admin panel. You can keep doing what you’re doing, but don’t claim you’re a good and clean person when you clearly don’t value other people’s time, money, or effort.   When you talk about being mature, your actions show the opposite. For once in your life, admit that you're still acting immature. Hopefully one day you'll understand how life really works and learn to move on. But until then, take responsibility and clean up the mess you've left behind.   TL;DR: I won’t be reading anything else, just grabbing popcorn and enjoying the show.
    • Gay whoever doesn't read it
    • Hey everyone, I’m reaching out for urgent support with my NPC stats—specifically Baium, who on my server seems to have gone full god mode. Apparently, I’m the "crazy dreamer" who believes Baium shouldn’t have over 4 million HP, 30k+ P. Atk, attack speed faster than a dagger, and more M. Atk than seven Antharas combined 😅. My server's developer (VILMIS) refuses to provide proper support, claiming I have no idea about the "real stats" and that I’m imagining things. I’ve tried modifying the values through the admin console, but nothing takes effect. I’m desperate—the server launches on 04/10, and I really want these stats to be closer to official NCSOFT values or at least something balanced and realistic. If anyone with experience can lend a hand or point me in the right direction, please reach out. I’d truly appreciate it 🙏    
    • Sure more parts from our discord conversation posted below. Please note that he blocked me while he is active on discord (he responded to a different discord account).   Could you please ban him @Atom?      
  • 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