Jump to content

[Share]Set Hero, Donator and Noblesse (Stored in DB) any pack


Recommended Posts

Posted

This can be accomplished on any l2j gracia and interlude any pack xD

 

Well lets start shell we?:D

At the bottom of the post i attached the admin commands...:D

 

And first we chose a .properties file...lets say other.properties

 

# ---------------------------------

# Donator Color Name & Title Config

# ---------------------------------

# Donator Name Color Enabled?.

DonatorNameColorEnabled = false

# Donator Color Name Selection.

DonatorColorName = 00FFFF

# Donator Title Color Enabled?

DonatorTitleColorEnabled = false

# Donator Color Name Selection.

DonatorTitleColor = 00FFFF

we add this there.

 

Then in config.java we add the title color and name color of a donator ( RGB Code Color )

    /** KidZor: Name Color System of Donator enable */
    public static boolean	DONATOR_NAME_COLOR_ENABLED;
    /** KidZor: Color of donator name */
    public static int		DONATOR_NAME_COLOR;

    /** KidZor: Title Color System of Donator enable */
    public static boolean	DONATOR_TITLE_COLOR_ENABLED;
    /** KidZor: Color of donator name */
    public static int		DONATOR_TITLE_COLOR;

                /** Donator color name **/
                DONATOR_NAME_COLOR_ENABLED						= Boolean.parseBoolean(otherSettings.getProperty("DonatorNameColorEnabled", "False"));
                DONATOR_NAME_COLOR						= Integer.decode("0x" + otherSettings.getProperty("DonatorColorName", "00FFFF"));
                DONATOR_TITLE_COLOR_ENABLED						= Boolean.parseBoolean(otherSettings.getProperty("DonatorTitleColorEnabled", "False"));
                DONATOR_TITLE_COLOR							= Integer.decode("0x" + otherSettings.getProperty("DonatorTitleColor", "00FF00"));

and in enterworld.java (clientpaket) this little code, its for donators when they log and the color of the title and name ( if enabled in config

        if (Config.DONATOR_NAME_COLOR_ENABLED)
        {
        	if (activeChar.isDonator())
        	{
        		activeChar.getAppearance().setNameColor(Config.DONATOR_NAME_COLOR);
        		activeChar.sendMessage("Welcome Back: " + activeChar.getName() + " to our Server!");
        		activeChar.sendMessage("Aww and btw " + activeChar.getName() + " please take time to vote ;)");
        		activeChar.sendMessage("Please, Enjoy your Stay !");
        	}
        }
        if (Config.DONATOR_TITLE_COLOR_ENABLED)
        {
        	if (activeChar.isDonator())
        	{
        		activeChar.getAppearance().setTitleColor(Config.DONATOR_TITLE_COLOR);
        	}
        }

Its good to add it on line 312

 

Now in L2PlayableInstance.java

 

/** donator System **/ 
private boolean	_donator	= false;

/**
 * Set the Donator Flag of the L2PlayableInstance.<BR><BR>
 **/
public void setDonator(boolean value)
{
	_donator = value;
}

/**
 * Return True if the L2PlayableInstance is a Donator.<BR><BR>
 **/
public boolean isDonator()
{
	return _donator;
}

put it at the end it don't matter xD

 

And now L2PcInstance.java xD

 

find private static final String RESTORE_CHARACTER

and at the end of the string tipe " ,hero,donator " this sh1t loads u hero and donator xD

 

then we go find: player.setNoble(rset.getInt("nobless")==1);

then after it add the lines:

 

			//L2J-Archid Donator and Hero Mod
			player.setHero(rset.getInt("hero")==1);
			player.setDonator(rset.getInt("donator")==1);

 

And after that find: public void leaveOlympiadObserverMode() line 8015

after the strings end put this code: ( it updates the status...changing the donator color name & title instantly when u do //setdonator xD )

public void updateNameTitleColor()
{
	// Donator Color  and title update
	// Note: this code can be used for GM's too
	if (isDonator())
		getAppearance().setNameColor(Config.DONATOR_NAME_COLOR);
		getAppearance().setTitleColor(Config.DONATOR_TITLE_COLOR);
	broadcastUserInfo();
}

 

And were almost done!

 

Now we add the the commands (The admin commands are attached at the end of the post add them in: gameserver/handler/admincommandhandlers )

After that's done we register our commands:

In l2j server or any tipe of that (L2J Archid, L2J Oneo)

net/sf/l2j/gameserver/gameserver.java

import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminDonator;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminHero;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminNoble;

And then we add this (this register the commands xD )

        _adminCommandHandler.registerAdminCommandHandler(new AdminDonator());
        _adminCommandHandler.registerAdminCommandHandler(new AdminHero());
        _adminCommandHandler.registerAdminCommandHandler(new AdminNoble());

 

Well that's kinda all...

 

Awwwww almost forgot xD

In command-privileges.properties

Add at the end

#################
### L2JArchid ###
#################
admin_sethero = 100
admin_setnoble = 100
admin_setdonator = 100

 

Admin Comands:

Admin Commands Java

 

K now that's all xD

Aww and please tell me this is useful or not cus it think it is >.>

Awwwww and btw The //sethero is permanently and it dosent interfere with Olympiad xD good for donate...

 

Shit i forgot this:

For the Db XD

ALTER TABLE `characters` ADD `donator` decimal(1,0) NOT NULL DEFAULT 0;
ALTER TABLE `characters` ADD `hero` decimal(1,0) NOT NULL DEFAULT 0;

Run this query  in mysql..so the hero and the donator Stores xD Thx

Posted

And this for 500 post? LoL i think 100 or 150 may be but 500? u r crazy dude . . .

also is just for your pack =P its like if u where doing a guide of how to use your pack w00t

 

for those who use it well ty but i use l2j =P bbz

Posted

you can use it to other packs too but 500 posts are too much , arent they? make it 150-200 and it will be fine! good job kidzor

Posted

ye u guys are probably right this post restriction thingy stinks xD

 

ps: its not only for donate...i just did an example...its a fun thing to do:P u have endless possibilities to do anything with this codes :P

 

And this for 500 post? LoL i think 100 or 150 may be but 500? u r crazy dude . . .

also is just for your pack =P its like if u where doing a guide of how to use your pack w00t

 

for those who use it well ty but i use l2j =P bbz

 

It works on any pack ( specially perfect and tested on l2j and oneo....)

The l2j-archid thingy is for publicity xD

Posted

I have a system that's very much like, but instead, I am doing fake Nobless and fake Heroes.

 

Also, a new table for this is easier to keep track on instead of altering an excisting table.

 

You should optimize your coding, I see several flaws inside it.

Guest
This topic is now closed to further replies.


  • Posts

    • Destroyer lvl 72 with items on sell. Items: - Tallum heavy set, - black ore set, - Halberd + Haste [Pole A], - Infernal master +4, - Saint spear clean.   Contact me for more details !  
    • p0w3rf1y was Nikita? also how do these things work, they take a base lets say acis or lucera version XXX and then they build up from that to whatever they have today themselves without further company from..again, lucera or acis for example?
    • - CHAPTER IV NEW START FROM 16.MAY.2026 - RATES Experience (EXP) 30x Skill Points (SP) 30x Adena 10x Drop for Spoil 10x General Drop 10x RaidBoss Drop 3x Manor 4x Quest Drop 2x Quest Reward 3x Fishing Drop 10x Vitality System 25x Clan Reputation Point 2x ENCHANTS Safe Enchant +3 Max. Enchant +16 Normal Scroll chance 70% Blessed Scroll chance 80% Max donation enchant is +8 Yogi event enchant rate is 35% -Olf Max Enchant +9 enchant rates: +1 to +3 100%, +4 65%, +5 65%, +6 60%, +7 60%, +8 50%, +9 45% Elemental Max. Level Level 7 Elemental Stone chance 55% Elemental Crystal chance 50% CONFIGURATION Buffs, Dances, Songs Duration 2 hours Buff Slots 28+4+12 Max. Clients per PC 2 / IP 4 Olympiads Max. Enchant +8 Premium Geodata and Pathnodes Sub-Class Max. Level 85 Offline Shop mode Auto Learn Skills Vitality System Champions System Wedding System Class Master AUTO EVENTS Team vs. Team Last Man Standing Treasure Hunt Korean Style Capture the Flag Lucky Creatures Protect the King Russian Roulette Fight For Throne Deathmatch Domination TvT VIP Advanced Zombies Treasure Hunt No-PvP Hunting Grounds Mass Domination Lucky Chests Mutant Battlefields Mini Events Rabbits Simon Says Summer Meleons Pirates Treasure Hitman - Bounty Hunters Medal Collector Boss Random Etc. RAIDS RESPAWN TIME Valakas 72 hours / 24 hours random spawn Antharas 72 hours / 8 hours random spawn Baium 48 hours / 2 hours random spawn Baylor 24 hours/ 12 hours random spawn Beleth 48 hour OTHER Special Goddess of Destruction and Heroic Cloaks Goddess of Destruction .dress me Armors PvP + Rank + RPC Reward system Daily Quests available in community board New Achievements system Tournament system 1vs1 + Daily Tournament Academy Search for newbies, with payment Party Matching with class filter and manage Register to Fortress Siege as single player Cancelled buffs will return in 60 seconds (disabled) Improved .acpon will use now: MP, CP, GCP, GHP. SOULS Maximum number of slots for Private Store is 50 The maximum level for subclass is up to level 85 Multiple commands with advanced options, see them in com board You can view a monster drop rate and list by using shift+click Olympiad - Heroes are formed every Saturday at 01:05 GMT+2 Advanced Community Board with lots of new features for perfect play Advanced NPC buffer with almost all skills and up to 4 schemes per character Special Quiz event every 5 hours with over 500 questions and good reward Custom special Raids with special drop, with A.I against bots All major raids drop Donation Coins and Divine S Scrolls Super T.Rex with better drop and starting premium pets Glittering Medals from all mobs to exchange for special items Reduced number of clan members to raise the clan level and less reputation required Clan / Alliance has a reduced penalty AutoFarm, Community Cleaner, Weapon Repair system, Player Info, Server Online Statistics And many more... http://l2viserion.com https://www.facebook.com/l2viserion
    • - CHAPTER IV NEW START FROM 16.MAY.2026 - RATES Experience (EXP) 30x Skill Points (SP) 30x Adena 10x Drop for Spoil 10x General Drop 10x RaidBoss Drop 3x Manor 4x Quest Drop 2x Quest Reward 3x Fishing Drop 10x Vitality System 25x Clan Reputation Point 2x ENCHANTS Safe Enchant +3 Max. Enchant +16 Normal Scroll chance 70% Blessed Scroll chance 80% Max donation enchant is +8 Yogi event enchant rate is 35% -Olf Max Enchant +9 enchant rates: +1 to +3 100%, +4 65%, +5 65%, +6 60%, +7 60%, +8 50%, +9 45% Elemental Max. Level Level 7 Elemental Stone chance 55% Elemental Crystal chance 50% CONFIGURATION Buffs, Dances, Songs Duration 2 hours Buff Slots 28+4+12 Max. Clients per PC 2 / IP 4 Olympiads Max. Enchant +8 Premium Geodata and Pathnodes Sub-Class Max. Level 85 Offline Shop mode Auto Learn Skills Vitality System Champions System Wedding System Class Master AUTO EVENTS Team vs. Team Last Man Standing Treasure Hunt Korean Style Capture the Flag Lucky Creatures Protect the King Russian Roulette Fight For Throne Deathmatch Domination TvT VIP Advanced Zombies Treasure Hunt No-PvP Hunting Grounds Mass Domination Lucky Chests Mutant Battlefields Mini Events Rabbits Simon Says Summer Meleons Pirates Treasure Hitman - Bounty Hunters Medal Collector Boss Random Etc. RAIDS RESPAWN TIME Valakas 72 hours / 24 hours random spawn Antharas 72 hours / 8 hours random spawn Baium 48 hours / 2 hours random spawn Baylor 24 hours/ 12 hours random spawn Beleth 48 hour OTHER Special Goddess of Destruction and Heroic Cloaks Goddess of Destruction .dress me Armors PvP + Rank + RPC Reward system Daily Quests available in community board New Achievements system Tournament system 1vs1 + Daily Tournament Academy Search for newbies, with payment Party Matching with class filter and manage Register to Fortress Siege as single player Cancelled buffs will return in 60 seconds (disabled) Improved .acpon will use now: MP, CP, GCP, GHP. SOULS Maximum number of slots for Private Store is 50 The maximum level for subclass is up to level 85 Multiple commands with advanced options, see them in com board You can view a monster drop rate and list by using shift+click Olympiad - Heroes are formed every Saturday at 01:05 GMT+2 Advanced Community Board with lots of new features for perfect play Advanced NPC buffer with almost all skills and up to 4 schemes per character Special Quiz event every 5 hours with over 500 questions and good reward Custom special Raids with special drop, with A.I against bots All major raids drop Donation Coins and Divine S Scrolls Super T.Rex with better drop and starting premium pets Glittering Medals from all mobs to exchange for special items Reduced number of clan members to raise the clan level and less reputation required Clan / Alliance has a reduced penalty AutoFarm, Community Cleaner, Weapon Repair system, Player Info, Server Online Statistics And many more... http://l2viserion.com https://www.facebook.com/l2viserion
    • TG Support: Buying Proxy | Channel: Buying Proxy Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server! Create your account for free here
  • 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..