Jump to content

Recommended Posts

Posted (edited)

Καλησπέρα μελοι του MaxCheaters

στο συγκεκριμένο topic θα μάθουμε πως βάζουμε ένα config στο l2jacis.

 

Ας αρχίσουμε

 

αρχικά βρίσκουμε το code που θέλουμε. Εγώ διάλεξα αυτό εδώ. Πατήστε εδώ για να πατέ στο link

 

Εάν θέλουμε να κάνουμε καινούριο φάκελο για τα configs πχ customs

Μπορούμε να φτιάξουμε έναν φάκελο με όνομα custom και εκεί μέσα να βάζουμε τα αρχεία.properties αλά ας δούμε και πως γίνετε αυτό.

ας αρχίσουμε  :D

 

Οπου έχω - σημαίνει πως πρέπει να βγάλω. εάν έχω + σημαίνει πως πρέπει να βάλουμε :)

 

ανοίγουμε το config.java

java/net/sf/l2j/Config.java

πάμε λίγο πιο κάτω λίγο κάτω και βλέπουμε

public static final String SIEGE_FILE = "./config/siege.properties";

από κάτω βάζουμε 

public static final String CUSTOMS_FILE = "./config/customs/customs.properties";

κάνουμε search

public static int CLIENT_PACKET_QUEUE_MAX_UNKNOWN_PER_MIN = 5; // default 5

ακριβός από κάτω βάζουμε

/** Customs Settings */
public static boolean STARTING_BUFFS;
public static List<int[]> STARTING_BUFFS_M = new ArrayList<int[]>(); 
public static List<int[]> STARTING_BUFFS_F = new ArrayList<int[]>();

customsettings.png

τώρα κάνουμε search loadClans ακριβός από πάνω βάζουμε

/**
* custom settings.
*/
private static final void loadCustoms()
{
final ExProperties customs = initProperties(CUSTOMS_FILE);
STARTING_BUFFS = customs.getProperty("StartingBuffs", true);
String[] propertySplit = customs.getProperty("StartingBuffsMage", "1204,2").split(";");
STARTING_BUFFS_M.clear();
for (String buff : propertySplit)
{
    String[] buffSplit = buff.split(",");
    if (buffSplit.length != 2)
     _log.warning("StartingBuffsMage[Config.load()]: invalid config property -> StartingBuffsMage \"" + buff + "\"");
  else
  {
  try
  {
  STARTING_BUFFS_M.add(new int[]{Integer.parseInt(buffSplit[0]), Integer.parseInt(buffSplit[1])});
  }
  catch (NumberFormatException nfe)
  {
  if (STARTING_BUFFS_M.equals(""))
  System.out.println("EROOOOOOOOOOOR WITH STARTING BUFS");
              }
  }
  }
  propertySplit = customs.getProperty("StartingBuffsFighter", "1204,2").split(";");
  STARTING_BUFFS_F.clear();
  for (String buff : propertySplit)
  {
  String[] buffSplit = buff.split(",");
  if (buffSplit.length != 2)
  _log.warning("StartingBuffsFighter[Config.load()]: invalid config property -> StartingBuffsFighter \"" + buff + "\"");
  else
  {
  try
  {
  STARTING_BUFFS_F.add(new int[]{Integer.parseInt(buffSplit[0]), Integer.parseInt(buffSplit[1])});
  }
             catch (NumberFormatException nfe)
            {
             if (STARTING_BUFFS_F.equals(""))
             System.out.println("EROOOOOOOOOOOR WITH STARTING BUFS");
             }
 }
 }
 
}

τώρα κάνουμε search

loadServer();

από κάτω βάζουμε 

// Customs settings
loadCustoms();

τώρα κάνουμε ότι κάνω στης φωτογραφίες για να φτιάξουμε το αρχείο

folder.png

steps.png

Screenshot_1.png

customs.png

Αφού τα κάνουμε όλα αυτά ανoίγουμε το customs.properties και μέσα βαζουμε

#Newbie Characters have starting buffs
StartingBuffs = True
 
#Starting Buffs for Mystics.
StartingBuffsMage = 1204,2;1085,3;
 
#Starting Buffs for Fighters.
StartingBuffsFighter = 1204,2;1086,2;
 

Αυτά για αυτό το topic. εάν σας άρεσε αφήστε ένα comment :D

True για να το ενεργοποιείστε

False για να το απενεργοποιήσετε 

Εάν έχω γράψει κάτι λάθος στο topic παρακαλώ γράψτε μου ένα comment από κάτω στο topic για να το διορθώσω.   :)

Edited by PaRaNoiC*
  • Upvote 3
  • 7 months later...
Posted

TOPIC UPDATED!!!

έγραψα από την αρχή το topic (τώρα δουλεύει 100%) ελπίζω να βοηθήσει :)

 

Παρακαλώ κάποιος moderator να διαγράψει όλα τα παραπάνω comments :)

  • 3 weeks later...
Posted

Μία μικρή παραβολή στον οδηγό είναι η διαφορά του .properties απο το .ini

.properties: Δεν ανοίγει με προεπιλεγμένο πρόγραμμα επεξεργασίας, Στο notepad++ αναγνωρίζει την γλώσσα και βάζει χρώματα για καλύτερη ανάγνωση.

.ini: Ανοίγει με προεπιλεγμένο πρόγραμμα επεξεργασιας, Στο notepad++ αναγνωρίζει την γλώσσα και βάζει χρώματα για καλύτερη ανάγνωση.

Posted (edited)

Μία μικρή παραβολή στον οδηγό είναι η διαφορά του .properties απο το .ini

.properties: Δεν ανοίγει με προεπιλεγμένο πρόγραμμα επεξεργασίας, Στο notepad++ αναγνωρίζει την γλώσσα και βάζει χρώματα για καλύτερη ανάγνωση.

.ini: Ανοίγει με προεπιλεγμένο πρόγραμμα επεξεργασιας, Στο notepad++ αναγνωρίζει την γλώσσα και βάζει χρώματα για καλύτερη ανάγνωση.

 

"Open with..." command, check the "Always use the program to open that type of file", genius...

 

And comments are shown in green, which is far enough as color system.

 

If that was the reason L2JHellas moved to .ini (I didn't understand why, now I get it), it's ridiculous. It's like if you forgot to check the file association with your music player and decided to encode all your MP3 to WMP format, only because Windows Media Player can't read your file, lol !

 

Here's a tutorial for you :

2whoy39.png

Edited by Tryskell
  • 2 weeks later...
Posted (edited)

"Open with..." command, check the "Always use the program to open that type of file", genius...

 

And comments are shown in green, which is far enough as color system.

 

If that was the reason L2JHellas moved to .ini (I didn't understand why, now I get it), it's ridiculous. It's like if you forgot to check the file association with your music player and decided to encode all your MP3 to WMP format, only because Windows Media Player can't read your file, lol !

 

Here's a tutorial for you :

2whoy39.png

nice reasoning

1 project used by 1000 member

if owner of project change ( properties to ini ) 1000 member will not need to do the above 

it is practical

 

Edit : and this change need 10 second is not like mp3 :)

Edited by pirama
Posted
On 5/2/2017 at 3:53 PM, .Elfocrash said:

Love how people find reasons to disagree even if they don't matter.

 

Nice guide.

Thanks. :)

Posted
1 hour ago, Afou To Patisa said:

Ο τυπας γραφει περιπου 9 μηνες πριν κ εσυ απαντας τωρα.. καλοι βλακες ειστε

exeis kapoio problhma? twra ithela na apantisw twra apantisa. xD episis den thimomoun oti eixa auto to guide ala to vrika eki pou epsaxna gia auto apantisa twra. :) 

  • 2 months later...
  • 10 months later...
Posted (edited)

kai gw twra eida oti o allos o xazos apantise prin poso kairo mou ekane kai tutorial 0axx0x0xa0ax0x0xa0xax0axa0 poso xazos eliwsa axaxxaaxaxaxxaaxxaax

 

Edited by Nightw0lf

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • https://jumpshare.com/share/kIdeKALOhgtMKpBKqxpg Test Equip Armors-> FullPlate, Gloves, Legs, Chest , Boots
    • 黑色星期五 — 为您的流量提供高级福利 仅在11月28日,我们的特别促销码可为您提供13%的商店折扣。 促销码: BLACKFRIDAY (13% 折扣) 您可以通过我们的网站或 Telegram 机器人在商店购物! 有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram Messenger 方便访问商店。 其他服务: 虚拟号码服务: 前往 用于购买 Telegram Stars 的机器人: 前往 – 快速且优惠地在 Telegram 中购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们向您呈现当前的 促销和特惠活动 列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣 — 只需在我们网站注册后发送您的用户名,格式如下:“SEND ME BONUS, MY USERNAME IS...” — 您需要在我们的论坛帖子中写下这句话! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(支持)提交主题为“Get Trial Bonus”的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人每周都会举办 Telegram Stars 抽奖活动! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Usually, I work alone on my projects, but sometimes the work is much more than I've expected. Could you provide a price list? It would be good if we knew your price before contacting you. 
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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