Jump to content
  • 0

Idk How...help Me On That Please


Question

Posted (edited)

  1. I want to put if Human , Elf , Dwarf female setGood(true)  and if Orc , delf, male dwarf setEvil(true) i made the code but doesnt work correctly , thinking to delete setevil and change the setGood retail code here:http://pastebin.com/0wdWBjT5
  2.  generally i deleted the setevil and changed the setgood to setdestiny i want just to press the button and check if race suits then go to the faction.. Goods : human , elf , female dwarf 

    evil : orc, d.elf , male dwarf

  3. package net.sf.l2j;
    	
    	
    	 
    	
    	
    	import java.sql.Connection;
    	
    	
    	import java.sql.PreparedStatement;
    	
    	
    	import java.sql.ResultSet;
    	
    	
    	import java.util.StringTokenizer;
    	
    	
    	import java.util.logging.Logger;
    	
    	
    	 
    	
    	
    	import net.sf.l2j.commons.random.Rnd;
    	
    	
    	import net.sf.l2j.gameserver.ai.CtrlIntention;
    	
    	
    	import net.sf.l2j.gameserver.model.L2World;
    	
    	
    	import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance;
    	
    	
    	import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
    	
    	
    	import net.sf.l2j.gameserver.model.actor.template.NpcTemplate;
    	
    	
    	import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
    	
    	
    	import net.sf.l2j.gameserver.network.serverpackets.MyTargetSelected;
    	
    	
    	import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
    	
    	
    	import net.sf.l2j.gameserver.network.serverpackets.SocialAction;
    	
    	
    	import net.sf.l2j.gameserver.network.serverpackets.ValidateLocation;
    	
    	
    	 
    	
    	
    	 
    	
    	
    	 
    	
    	
    	public class L2FactionInstance extends L2NpcInstance
    	
    	
    	{
    	
    	
    	 
    	
    	
    	    public L2FactionInstance(int objectId, NpcTemplate template)
    	
    	
    	    {
    	
    	
    	        super(objectId, template);
    	
    	
    	    }
    	
    	
    	 
    	
    	
    	    private final static Logger _log = Logger.getLogger(L2FactionInstance.class.getName());
    	
    	
    	 
    	
    	
    	    @Override
    	
    	
    	    public void onBypassFeedback(L2PcInstance player, String command)
    	
    	
    	    {
    	
    	
    	        player.sendPacket(ActionFailed.STATIC_PACKET);
    	
    	
    	        StringTokenizer st = new StringTokenizer(command, " ");
    	
    	
    	        String actualCommand = st.nextToken();
    	
    	
    	        @SuppressWarnings("unused")
    	
    	
    	        String val = "";
    	
    	
    	        if (st.countTokens() >= 1)
    	
    	
    	        {
    	
    	
    	            val = st.nextToken();
    	
    	
    	    }
    	
    	
    	 
    	
    	
    	        else if (actualCommand.equalsIgnoreCase("setdestiny"))
    	
    	
    	        {
    	
    	
    	           
    	
    	
    	        setTarget(player);
    	
    	
    	       
    	
    	
    	            if (player.isGood())
    	
    	
    	            {
    	
    	
    	                player.sendMessage("You already are in " + Config.FACTION_NAME_TEAM_GOOD + " faction ");
    	
    	
    	                player.sendPacket(new ActionFailed());
    	
    	
    	            }
    	
    	
    	           if(player.getRace blabla bla 
    	
    	
    	                    {
    	
    	
    	                    player.setGood(true);
    	
    	
    	                    Connection connection = null;
    	
    	
    	                        try
    	
    	
    	                        {
    	
    	
    	                            connection = L2DatabaseFactory.getInstance().getConnection();
    	
    	
    	                            PreparedStatement statement = connection.prepareStatement("SELECT obj_Id FROM characters where char_name=?");
    	
    	
    	                            statement.setString(1, player.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;
    	
    	
    	                            }
    	
    	
    	                            statement = connection.prepareStatement("UPDATE characters SET good=1 WHERE obj_Id=?");
    	
    	
    	                        statement.setInt(1, objId);
    	
    	
    	                            statement.execute();
    	
    	
    	                            statement.close();
    	
    	
    	                            connection.close();
    	
    	
    	                        }
    	
    	
    	                        catch (Exception e)
    	
    	
    	                        {
    	
    	
    	                            _log.info("could not set good status of char:");
    	
    	
    	                        }
    	
    	
    	                        finally
    	
    	
    	                        {
    	
    	
    	                            try
    	
    	
    	                            {
    	
    	
    	                                connection.close();
    	
    	
    	                            }
    	
    	
    	                            catch (Exception e)
    	
    	
    	                            {
    	
    	
    	                            }
    	
    	
    	                        }
    	
    	
    	                   
    	
    	
    	                        if (player.isGood())
    	
    	
    	                        {
    	
    	
    	                            player.broadcastUserInfo();
    	
    	
    	                            player.sendMessage("You Are fighiting Now for" + Config.FACTION_NAME_TEAM_GOOD + " Faction ");
    	
    	
    	                            player.getAppearance().setNameColor(Config.FACTION_COLOR_NAME_GOOD);
    	
    	
    	                            player.teleToLocation(Config.GOODX, Config.GOODY, Config.GOODZ);
    	
    	
    	                            player.setTitle(Config.FACTION_NAME_TEAM_GOOD);
    	
    	
    	                        }
    	
    	
    	                    }
    	
    	
    	                }
    	
    	
    	        }
    	
    	
    	        }
    	
    	
    	           
    	
    	
    	                    else if(player.getRace() == Race.Orc() bla bla bla
    	
    	
    	                    {
    	
    	
    	                        player.setEvil(true);
    	
    	
    	                        Connection connection = null;
    	
    	
    	                        try
    	
    	
    	                        {
    	
    	
    	                            connection = L2DatabaseFactory.getInstance().getConnection();
    	
    	
    	                            PreparedStatement statement = connection.prepareStatement("SELECT obj_Id FROM characters where char_name=?");
    	
    	
    	                            statement.setString(1, player.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;
    	
    	
    	                            }
    	
    	
    	                            statement = connection.prepareStatement("UPDATE characters SET evil=1 WHERE obj_Id=?");
    	
    	
    	                            statement.setInt(1, objId);
    	
    	
    	                            statement.execute();
    	
    	
    	                            statement.close();
    	
    	
    	                            connection.close();
    	
    	
    	                        }
    	
    	
    	                        catch (Exception e)
    	
    	
    	                        {
    	
    	
    	                            _log.info("could not set evil status of char:");
    	
    	
    	                        }
    	
    	
    	                        finally
    	
    	
    	                        {
    	
    	
    	                            try
    	
    	
    	                            {
    	
    	
    	                                connection.close();
    	
    	
    	                            }
    	
    	
    	                            catch (Exception e)
    	
    	
    	                            {
    	
    	
    	                            }
    	
    	
    	                        }
    	
    	
    	                   
    	
    	
    	                        if (player.isEvil())
    	
    	
    	                        {
    	
    	
    	                            player.broadcastUserInfo();
    	
    	
    	                            player.sendMessage("You Are fighiting Now for " + Config.FACTION_NAME_TEAM_EVIL + " Faction ");
    	
    	
    	                            player.getAppearance().setNameColor(Config.FACTION_COLOR_NAME_EVIL);
    	
    	
    	                            player.teleToLocation(Config.EVILX, Config.EVILY, Config.EVILZ);
    	
    	
    	                            player.setTitle(Config.FACTION_NAME_TEAM_EVIL);
    	
    	
    	                        }
    	
    	
    	                    }
    	
    	
    	                }
    	
    	
    	            
    	
    	
    	        else if (actualCommand.equalsIgnoreCase("setnobless"))
    	
    	
    	        {
    	
    	
    	       
    	
    	
    	            L2PcInstance activeChar = player;
    	
    	
    	            if (activeChar.isNoble())
    	
    	
    	                activeChar.sendMessage("You Are Already A Noblesse!.");
    	
    	
    	            else
    	
    	
    	            {
    	
    	
    	                activeChar.setNoble(true, true);
    	
    	
    	                activeChar.sendMessage("You Are Now a Noble,You Are Granted With Noblesse Status , And Noblesse Skills.");
    	
    	
    	                activeChar.broadcastUserInfo();
    	
    	
    	                activeChar.getInventory().addItem("Tiara", 7694, 1, activeChar, null);
    	
    	
    	            }
    	
    	
    	        }
    	
    	
    	        else
    	
    	
    	        {
    	
    	
    	            super.onBypassFeedback(player, command);
    	
    	
    	        }
    	
    	
    	    }
    	
    	
    	   
    	
    	
    	    @Override
    	
    	
    	    public String getHtmlPath(int npcId, int val)
    	
    	
    	    {
    	
    	
    	        return "data/html/mods/faction/main.htm";
    	
    	
    	    }
    	
    	
    	 
    	
    	
    	}
Edited by Kelrzher

Recommended Posts

  • 0
Posted (edited)

You can simply override the Race enum or whatever you use. On aCis it's now named ClassRace, and breath multiplier is already applied to give you an idea of how you should do it.

 

https://xp-dev.com/svn/aCis_public/aCis_gameserver/java/net/sf/l2j/gameserver/model/base/Race.java

 

That way you simply 

player.getRace().getFaction()

About how to store faction, try to keep it as an enum. And don't use setEvil / setGood, it's soooooo 2008 writting style.

Edited by Tryskell
  • 0
Posted (edited)

You can simply override the Race enum or whatever you use. On aCis it's now named ClassRace, and breath multiplier is already applied to give you an idea of how you should do it.

 

https://xp-dev.com/svn/aCis_public/aCis_gameserver/java/net/sf/l2j/gameserver/model/base/Race.java

 

That way you simply 

player.getRace().getFaction()

About how to store faction, try to keep it as an enum. And don't use setEvil / setGood, it's soooooo 2008 writting style.

i made it through pc instance but i am sure its totally wrong .. well 2008 styling makes me happy for now hahah :D check , so bad but maybe will work?

 


//faction start
public boolean isGood()
{
if (getRace() == Race.Dwarf && getAppearance().getSex() && getRace() == Race.Elf && getRace() == Race.Human)
{
setGood(true);
}
 
         Connection connection = null;
             try
             {
                 connection = L2DatabaseFactory.getInstance().getConnection();
                 PreparedStatement statement = connection.prepareStatement("SELECT obj_Id FROM characters where char_name=?");
                 statement.setString(1, 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 good=1 WHERE obj_Id=?");
             statement.setInt(1, objId);
                 statement.execute();
                 statement.close();
                 connection.close();
             }
             catch (Exception e)
             {
                 _log.info("could not set good status of char:");
             }
             finally
             {
                 try
                 {
                     connection.close();
                 }
                 catch (Exception e)
                 {
                 }
             }
return _isGood;
}
        
public boolean isEvil()
{
if (getRace() == Race.Dwarf && !getAppearance().getSex() && getRace() == Race.DarkElf && getRace() == Race.Orc)
{
setEvil(true);
}
         Connection connection = null;
         try
         {
             connection = L2DatabaseFactory.getInstance().getConnection();
             PreparedStatement statement = connection.prepareStatement("SELECT obj_Id FROM characters where char_name=?");
             statement.setString(1, 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 evil=1 WHERE obj_Id=?");
             statement.setInt(1, objId);
             statement.execute();
             statement.close();
             connection.close();
         }
         catch (Exception e)
         {
             _log.info("could not set evil status of char:");
         }
         finally
         {
             try
             {
                 connection.close();
             }
             catch (Exception e)
             {
             }
         }
return _isEvil;
}
      
public void setGood(boolean value)
{
   _isGood = value;
}
      
public void setEvil(boolean value)
{
   _isEvil = value;
}
Edited by Kelrzher
  • 0
Posted (edited)

Beside the bed coding style, it's full of typo and failed logic, it won't work

Edited by Sdw
  • 0
Posted

You can simply override the Race enum or whatever you use. On aCis it's now named ClassRace, and breath multiplier is already applied to give you an idea of how you should do it.

 

https://xp-dev.com/svn/aCis_public/aCis_gameserver/java/net/sf/l2j/gameserver/model/base/Race.java

 

That way you simply 

player.getRace().getFaction()

About how to store faction, try to keep it as an enum. And don't use setEvil / setGood, it's soooooo 2008 writting style.

 

You know that "override enum" is a completely wrong sentence right? Enums can never be extended or have children/parent/friends in Java

 

The answer is, edit Race enum, not override it

  • 0
Posted (edited)

Edit:

If player get race this set good..

Player.teletolocation blabla

Else if player get race this setevil

Player teletolocation blabla

On charactercreate maybe will be fine..just my idea

Edited by Reborn12
  • 0
Posted (edited)

If it's a race based faction type and you can't manually edit faction, it's pointless to store it on database. What I told you is far enough.

 

The code you use, I know it well, since it's the first custom I added when I was deving on l2j archid in 2009.

 

@xxdem ty captain obvious. Keep trolling.

Edited by Tryskell
  • 0
Posted

If it's a race based faction type and you can't manually edit faction, it's pointless to store it on database. What I told you is far enough.

 

The code you use, I know it well, since it's the first custom I added when I was deving on l2j archid in 2009.

 

@xxdem ty captain obvious. Keep trolling.

how the heck i will write the code on race.java looool 

  • 0
Posted
sendPacket(CharCreateOk.STATIC_PACKET);

L2World.getInstance().addObject(newChar);

if (newChar.getRace() == Race.Dwarf &&   newChar.getRace() == Race.Elf && newChar.getRace() == Race.Human)

{

newChar.setGood(true);

newChar.sendMessage("Litourgo");

}

 

if (newChar.getRace() == Race.DarkElf && newChar.getRace() == Race.Orc)

{

newChar.setEvil(true);

newChar.sendMessage("Ime evil");

} on charcreate file ot work
  • 0
Posted (edited)
public enum Faction {
    GOOD,
    EVIL;
}

public final class L2PcInstance extends L2Playable
{
    // ...

    private Faction faction;

    // ...

    public Faction getFaction() {
        return this.faction;
    }

    public void setFaction(Faction faction) {
        this.faction = faction;
    }

    public boolean isGood() {
        return this.faction == Faction.GOOD;
    }

public class EnterWorld extends L2GameClientPacket
{
    // ...
    @Override
    protected void runImpl()
    {
        // ...
        if (activeChar.getRace() == Race.Human || activeChar.getRace() == Race.Elf || (activeChar.getRace() == Race.Dwarf && activeChar.getAppearance().getSex())) {
            activeChar.setFaction(Faction.GOOD);
        } else {
            activeChar.setFaction(Faction.EVIL);
        }

:lol:

Edited by Tessa
  • 0
Posted
public enum Faction {
    GOOD,
    EVIL;
}

public final class L2PcInstance extends L2Playable
{
    // ...

    private Faction faction;

    // ...

    public Faction getFaction() {
        return this.faction;
    }

    public void setFaction(Faction faction) {
        this.faction = faction;
    }

    public boolean isGood() {
        if (faction == Faction.GOOD) {
            return true;
        }

        return false;
    }

public class EnterWorld extends L2GameClientPacket
{
    // ...
    @Override
    protected void runImpl()
    {
        // ...
        if (activeChar.getRace() == Race.Human || activeChar.getRace() == Race.Elf || (activeChar.getRace() == Race.Dwarf && activeChar.getAppearance().getSex())) {
            activeChar.setFaction(Faction.GOOD);
        } else {
            activeChar.setFaction(Faction.EVIL);
        }

:lol:

 

:O did you just extend L2GameClientPacket ????? :o

Guest
This topic is now closed to further replies.



  • Posts

    • Migrating a legacy Interlude server to PostgreSQL while adding real observability is basically forcing 2006 MMO engineering to attend a 2026 infrastructure conference at gunpoint. PS: which revision of aCis? PS: 🧻what was broken during this whatever you call it.    AAC Guard beign asked to adapt to this be like: - Creating bugs since early 2018
    • OH MY LORDDDDDDDDDDDDDDDDDDDDD   FINALLY
    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server!  Create your free account here
    • I came out of my cave as I do once every 5 years. By now, I know nobody really cares about L2, but I still find it fun to experiment. Everything you see here will be free and open source. I have no interest in selling anything.   Long story short, I like to revisit Interlude and apply what I've learned to see how far I can push it. Here's Outerlude, a public fork of aCis for the modern age.   Video demo:   Work that has been done:   Redone the netcode from scratch to be async The NPC AI was completely redone based on Finite State Machines Moved to PostgreSQL and using some of its cool features Lots of config that should be hot reloadable has moved to the database OpenTelemetry instrumentation, where it makes sense, and a Grafana dashboard A built-in REST API for server management A built-in MCP Server for LLMs Nidrah AI, an AI Agent to make managing the server easier Real-time server map view Chat auditing and live snooping A new Fake Players Engine with a Node logic system and a new LLM planner for any behavior Just watch the video   If there is interest in this and I'm happy with it, or I get bored (which I always do), I will open-source it. Let me know what you think and if there is some feature you'd like me to implement.
  • 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..