Jump to content

Recommended Posts

Posted

Hello people. Here I am again with the second part of the multiple guides. Are you ready? I hope yes, since today we will talk about the creation of a new "type" of player. I will try to talk as simply as I can, in order to understand what I'm trying to tell you.

Let's Start!

 


 

Part 3: Let's Create!

 

First of all, we start by setting it at L2PcInstance.

Let's go at the place talking about CHARACTER's Restore/Update.

I mean these:

private static final String UPDATE_CHARACTER = "UPDATE characters SET

and

private static final String RESTORE_CHARACTER = "SELECT

 

Now you just have to update both with this:

,coyote

 

The new type will be a "coyote" (you can set whatever you want).

 

Now let's search for this:

private boolean _noble = false;

 

In order to add the new boolean.

Under this you have to put this:

private boolean _coyote = false;

 

Very well.

Let's now add it here as well:

"base_class,newbie,nobless,power_grade,last_recom_date

Update it again, in the same way (add the ",coyote")

 

Now let's search for this:

statement.setLong(57,System.currentTimeMillis());

Under this let's add our:

statement.setInt(58, iscoyote() ? 1 :0);

 

 

Okay, now listen up.

Since the player won't be able to get the "rank" without further modifications, we will set it as an admin command. What do I mean? We will create an "AdminCoyote" command. The admin will be able to make the player a coyote.

So, find this:

player.setClanJoinExpiryTime(rset.getLong("clan_join_expiry_time"));

And above it add this:

player.setcoyote(rset.getInt("coyote")==1);

 

Almost done!

Let's search for that now, in order to add the new type of player there.

statement.setInt(57, getObjectId());

Change it and from "57" make it "58.

Now above it, we will add our type (this will be the number 57).

statement.setInt(57, iscoyote() ? 1 : 0);

 

Let's finish it by defining some stuff.

Search for the:

{
return _isIn7sDungeon;
}

And under it place these:

public boolean iscoyote() 
{ 
	return _coyote; 
} 

public void setcoyote(boolean coyote) 
{ 
	_coyote = coyote;
}

 

The first boolean is for the whole shit and the following void is for the AdminCommand.

 

And, guess what!

We are done by creating it at L2PcInstance.

Now you have this new type.

 

Let's proceed by adding the admin command.

I won't start explaining what each line does.

I suppose that you can understand, from my previous lessons.

 

So, create a new file at admincommandhandlers and name it AdminCoyote.

Add these inside it:

package net.sf.l2j.gameserver.handler.admincommandhandlers;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
import net.sf.l2j.gameserver.model.L2Object;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class AdminCoyote implements IAdminCommandHandler
{
private static String[] _adminCommands =
{
	"admin_setcoyote",};
private final static Log _log = LogFactory.getLog(AdminCoyote.class.getName());

public boolean useAdminCommand(String command, L2PcInstance activeChar)
{
	if (command.startsWith("admin_setcoyote"))
	{
		L2Object target = activeChar.getTarget();
		L2PcInstance player = null;
		if (target instanceof L2PcInstance)
		{
			player = (L2PcInstance)target;
		}
		else
		{
			player = activeChar;
		}

		if (player.iscoyote())
		{
			player.setcoyote(false);
			Connection connection = null;
			try
			{
				connection = L2DatabaseFactory.getInstance().getConnection();

				PreparedStatement statement = connection.prepareStatement("SELECT obj_id FROM characters where char_name=?");
				statement.setString(1,target.getName());
				ResultSet rset = statement.executeQuery();
				int objId = 0;
				if (rset.next())
				{
					objId = rset.getInt(1);
				}
				rset.close();
				statement.close();

				if (objId == 0) {connection.close(); return false;}

				statement = connection.prepareStatement("UPDATE characters SET coyote=0 WHERE obj_id=?");
				statement.setInt(1, objId);
				statement.execute();
				statement.close();
				connection.close();
			}
			catch (Exception e)
			{
				_log.warn("Add a warning..", e);
			}
			finally
			{
				try
				{
					connection.close();
				}
				catch (Exception e)
				{
					//
				}
			}
		}
		else
		{
			player.setcoyote(true);
			Connection connection = null;
			try
			{
				connection = L2DatabaseFactory.getInstance().getConnection();

				PreparedStatement statement = connection.prepareStatement("SELECT obj_id FROM characters where char_name=?");
				statement.setString(1,target.getName());
				ResultSet rset = statement.executeQuery();
				int objId = 0;
				if (rset.next())
				{
					objId = rset.getInt(1);
				}
				rset.close();
				statement.close();

				if (objId == 0) {connection.close(); return false;}

				statement = connection.prepareStatement("UPDATE characters SET coyote=1 WHERE obj_id=?");
				statement.setInt(1, objId);
				statement.execute();
				statement.close();
				connection.close();
			}
			catch (Exception e)
			{
				_log.warn("Add a warning", e);
			}
			finally
			{
				try
                                        {
                                                connection.close();
                                        }
                                        catch (Exception e)
                                        {
                                                //
                                        }
			}

		}
	}
	return false;
}
  	public String[] getAdminCommandList()
{
	return _adminCommands;
}
}

 

The last thing you gotta do is to register the new admin command.

You know how (I have showed it at my previous guides).

 

 

And this is how you created a brand new thing like this by yourself!

If you want to make configurations or add new stuff, then you know how.

Just read my guide about Configurations ;]

 

 

NOTE: I am trying to explain stuff as simply as I can. Sometimes I may seem rediculous, although it's the only way for beginners to understand.

 

 

Best Regards,

Coyote™.

 

To be Continued..

Posted

Your guide, first post in this topic - 6389 words, its just notify.

 

 

 

If you're talking about this, then there is no space left.

If you're talking about part 1, then I suppose you're right.

When guide no.4 is finished, I will update this with No.4 and move No.3 to the other one.

Posted

This guide show as how we can create a race? such as kamael or human?

nonononono

 

Well, I can't explain it in order to understand it..

Let's say..

Create "ranks" like donators.

 

A player can be granted with the donator rank

For example, if (player.isDonator()) etc.

Posted

nonononono

 

Well, I can't explain it in order to understand it..

Let's say..

Create "ranks" like donators.

 

A player can be granted with the donator rank

For example, if (player.isDonator()) etc.

ahaa now i got it , i was searching for something like this before some months, thnx for sharing it Coyote...

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

    • Hello! I am new to l2 server creation and i need your help please!!! I want to make my own l2 interlude c6 server with custom thing in it.  I need help with where to start. What source pack to pick to start and what to do. Please if you can help me i would appreciate it very much !!!
    • Need Discord with rare badge? VISIT US AND SHOP WITH US! NEW STOCK   Aged, Early Supporter Discord Accounts I sell HQ Aged and Early, Discord Accounts that are inactive and not flagged by discord at cheap prices   If you want to contact me, you can add me on discord: worldcoldwar Features: Format - age : email : pass : token Not flagged and undetected by discord HQ % With OGE Emails, password etc can be changed Unverified Early Supporter 24M Boost Badge HypeSquad Events Early Verified Bot Developer Early Supporters SHOP LINK: disvault1.mypaylix.gg/ For PayPal payments, please open a ticket. If you experience any problems with cryptocurrency payments, please open a ticket as well.
    • Tired of frantically switching between windows trying to find that specific Warlock who should be casting saves? Forgot which server you left your Warsmith on? This mod solves these problems! What it does: Turns the boring window title into an information panel: Server Name - Character Name [Class] Real-life examples: - ServerName - HardcoreFarm [Spoilerr] (who's been spoiling for 3 months already) - ServerName - ClericHelper [Buffer] (eternal buffer on standby) - ServerName - MainChar [Gladiator] (main character who's always AFK) Why you need this: For multiboxers - to avoid confusing where the DD is and where the healer is For the forgetful - if your memory is like a goldfish For streamers - viewers immediately see who's on screen For adults - when playing at work and need to quickly hide the window DLL only - no Interface files needed Installation (more complicated than making tea): 1. Download the DLL 2. Drop it into the System folder 3. Launch the client 4. Be amazed how you lived without this before!   Purchase Conditions: Price: 100$ Payment Method: USDT. How to Buy: Contact me on Telegram: @kiselevwv for a quick response. I will answer all your questions and provide additional information if needed. I guarantee functionality at the moment of sale and prompt assistance with setup after purchase.    
    • Hello Everyone   Wts adena  L2 REBORN C5 FRANZ x1 50kk stock 😉   Contact Discord :  topseller4081  
    • tratando de crear un GvE tengo problemas con el scripts como no se mucho de esto me estoy ayudando con IA pero no puedo salir de este bache      [06:19:43]  WARN Quest GvE_AI not found! [06:19:45]  WARN Quest GvE_AI not found! [06:19:50]  WARN Quest GvE_AI not found! [06:25:51]  WARN Quest GvE_AI not found!
  • 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..