Jump to content
  • 0

elf height & getSex method


Question

Posted (edited)

hello i have a problem with elf's height.. 
Elf females are flying
Heights are corrects into database, but when i change the F_COL_H ,females height doesnt change at all as it should be.
When i change M_COL_H change both height (males,females) and females are not flying but males boots are inside ground(i hope u understand)


photos of navicat(elf fighter class is in the circle), male and female elf fighter ~> https://imgur.com/a/xnhjz6P

java~> charTemplateTable

Spoiler

/*
 * L2jFrozen Project - www.l2jfrozen.com 
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 * http://www.gnu.org/copyleft/gpl.html
 */
package com.l2jfrozen.gameserver.datatables.sql;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Map;

import javolution.util.FastMap;

import org.apache.log4j.Logger;

import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.model.base.ClassId;
import com.l2jfrozen.gameserver.templates.L2PcTemplate;
import com.l2jfrozen.gameserver.templates.StatsSet;
import com.l2jfrozen.util.CloseUtil;
import com.l2jfrozen.util.database.DatabaseUtils;
import com.l2jfrozen.util.database.L2DatabaseFactory;

/**
 * @version $Revision: 1.6.2.1.2.10 $ $Date: 2005/03/29 14:00:54 $
 */
public class CharTemplateTable
{
    private static Logger LOGGER = Logger.getLogger(CharTemplateTable.class);
    
    private static CharTemplateTable _instance;
    
    private static final String[] CHAR_CLASSES =
    {
        "Human Fighter",
        "Warrior",
        "Gladiator",
        "Warlord",
        "Human Knight",
        "Paladin",
        "Dark Avenger",
        "Rogue",
        "Treasure Hunter",
        "Hawkeye",
        "Human Mystic",
        "Human Wizard",
        "Sorceror",
        "Necromancer",
        "Warlock",
        "Cleric",
        "Bishop",
        "Prophet",
        "Elven Fighter",
        "Elven Knight",
        "Temple Knight",
        "Swordsinger",
        "Elven Scout",
        "Plainswalker",
        "Silver Ranger",
        "Elven Mystic",
        "Elven Wizard",
        "Spellsinger",
        "Elemental Summoner",
        "Elven Oracle",
        "Elven Elder",
        "Dark Fighter",
        "Palus Knight",
        "Shillien Knight",
        "Bladedancer",
        "Assassin",
        "Abyss Walker",
        "Phantom Ranger",
        "Dark Elven Mystic",
        "Dark Elven Wizard",
        "Spellhowler",
        "Phantom Summoner",
        "Shillien Oracle",
        "Shillien Elder",
        "Orc Fighter",
        "Orc Raider",
        "Destroyer",
        "Orc Monk",
        "Tyrant",
        "Orc Mystic",
        "Orc Shaman",
        "Overlord",
        "Warcryer",
        "Dwarven Fighter",
        "Dwarven Scavenger",
        "Bounty Hunter",
        "Dwarven Artisan",
        "Warsmith",
        "dummyEntry1",
        "dummyEntry2",
        "dummyEntry3",
        "dummyEntry4",
        "dummyEntry5",
        "dummyEntry6",
        "dummyEntry7",
        "dummyEntry8",
        "dummyEntry9",
        "dummyEntry10",
        "dummyEntry11",
        "dummyEntry12",
        "dummyEntry13",
        "dummyEntry14",
        "dummyEntry15",
        "dummyEntry16",
        "dummyEntry17",
        "dummyEntry18",
        "dummyEntry19",
        "dummyEntry20",
        "dummyEntry21",
        "dummyEntry22",
        "dummyEntry23",
        "dummyEntry24",
        "dummyEntry25",
        "dummyEntry26",
        "dummyEntry27",
        "dummyEntry28",
        "dummyEntry29",
        "dummyEntry30",
        "Duelist",
        "DreadNought",
        "Phoenix Knight",
        "Hell Knight",
        "Sagittarius",
        "Adventurer",
        "Archmage",
        "Soultaker",
        "Arcana Lord",
        "Cardinal",
        "Hierophant",
        "Eva Templar",
        "Sword Muse",
        "Wind Rider",
        "Moonlight Sentinel",
        "Mystic Muse",
        "Elemental Master",
        "Eva's Saint",
        "Shillien Templar",
        "Spectral Dancer",
        "Ghost Hunter",
        "Ghost Sentinel",
        "Storm Screamer",
        "Spectral Master",
        "Shillien Saint",
        "Titan",
        "Grand Khauatari",
        "Dominator",
        "Doomcryer",
        "Fortune Seeker",
        "Maestro"
    };
    
    private final Map<Integer, L2PcTemplate> _templates;
    
    public static CharTemplateTable getInstance()
    {
        if (_instance == null)
        {
            _instance = new CharTemplateTable();
        }
        
        return _instance;
    }
    
    private CharTemplateTable()
    {
        _templates = new FastMap<>();
        Connection con = null;
        
        try
        {
            con = L2DatabaseFactory.getInstance().getConnection(false);
            PreparedStatement statement = con.prepareStatement("SELECT * FROM class_list, char_templates, lvlupgain" + " WHERE class_list.id = char_templates.classId" + " AND class_list.id = lvlupgain.classId" + " ORDER BY class_list.id");
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                StatsSet set = new StatsSet();
                // ClassId classId = ClassId.values()[rset.getInt("id")];
                set.set("classId", rset.getInt("id"));
                set.set("className", rset.getString("className"));
                set.set("raceId", rset.getInt("raceId"));
                set.set("baseSTR", rset.getInt("STR"));
                set.set("baseCON", rset.getInt("CON"));
                set.set("baseDEX", rset.getInt("DEX"));
                set.set("baseINT", rset.getInt("_INT"));
                set.set("baseWIT", rset.getInt("WIT"));
                set.set("baseMEN", rset.getInt("MEN"));
                set.set("baseHpMax", rset.getFloat("defaultHpBase"));
                set.set("lvlHpAdd", rset.getFloat("defaultHpAdd"));
                set.set("lvlHpMod", rset.getFloat("defaultHpMod"));
                set.set("baseMpMax", rset.getFloat("defaultMpBase"));
                set.set("baseCpMax", rset.getFloat("defaultCpBase"));
                set.set("lvlCpAdd", rset.getFloat("defaultCpAdd"));
                set.set("lvlCpMod", rset.getFloat("defaultCpMod"));
                set.set("lvlMpAdd", rset.getFloat("defaultMpAdd"));
                set.set("lvlMpMod", rset.getFloat("defaultMpMod"));
                set.set("baseHpReg", 1.5);
                set.set("baseMpReg", 0.9);
                set.set("basePAtk", rset.getInt("p_atk"));
                set.set("basePDef", /* classId.isMage()? 77 : 129 */rset.getInt("p_def"));
                set.set("baseMAtk", rset.getInt("m_atk"));
                set.set("baseMDef", rset.getInt("char_templates.m_def"));
                set.set("classBaseLevel", rset.getInt("class_lvl"));
                set.set("basePAtkSpd", rset.getInt("p_spd"));
                set.set("baseMAtkSpd", /* classId.isMage()? 166 : 333 */rset.getInt("char_templates.m_spd"));
                set.set("baseCritRate", rset.getInt("char_templates.critical") / 10);
                set.set("baseRunSpd", rset.getInt("move_spd"));
                set.set("baseWalkSpd", 0);
                set.set("baseShldDef", 0);
                set.set("baseShldRate", 0);
                set.set("baseAtkRange", 40);
                
                set.set("spawnX", rset.getInt("x"));
                set.set("spawnY", rset.getInt("y"));
                set.set("spawnZ", rset.getInt("z"));
                
                L2PcTemplate ct;
                
                set.set("collision_radius", rset.getDouble("m_col_r"));
                set.set("collision_height", rset.getDouble("m_col_h"));
                ct = new L2PcTemplate(set);
                // 5items must go here
                for (int x = 1; x < 6; x++)
                {
                    if (rset.getInt("items" + x) != 0)
                    {
                        ct.addItem(rset.getInt("items" + x));
                    }
                }
                _templates.put(ct.classId.getId(), ct);
                
                set = null;
                ct = null;
            }
            
            DatabaseUtils.close(statement);
            DatabaseUtils.close(rset);
            statement = null;
            rset = null;
        }
        catch (final SQLException e)
        {
            if (Config.ENABLE_ALL_EXCEPTIONS)
                e.printStackTrace();
            
            LOGGER.warn("error while loading char templates " + e.getMessage());
        }
        finally
        {
            CloseUtil.close(con);
        }
        
        LOGGER.info("CharTemplateTable: Loaded " + _templates.size() + " Character Templates.");
    }
    
    public L2PcTemplate getTemplate(final ClassId classId)
    {
        return getTemplate(classId.getId());
    }
    
    public L2PcTemplate getTemplate(final int classId)
    {
        final int key = classId;
        
        return _templates.get(key);
    }
    
    public static final String getClassNameById(final int classId)
    {
        return CHAR_CLASSES[classId];
    }
    
    public static final int getClassIdByName(final String className)
    {
        int currId = 1;
        
        for (final String name : CHAR_CLASSES)
        {
            if (name.equalsIgnoreCase(className))
            {
                break;
            }
            
            currId++;
        }
        
        return currId;
    }
    
}
 


any help how to fix ?:/


EDIT: Does anyone know how to get method : getSex apperiance so i can change the code to :

if(sex==0)

{

                set.set("collision_radius", rset.getDouble("m_col_r"));
                set.set("collision_height", rset.getDouble("m_col_h"));

}

else

{

                set.set("collision_radius", rset.getDouble("f_col_r"));
                set.set("collision_height", rset.getDouble("f_col_h"));

}

 

Edited by Irrelevant

7 answers to this question

Recommended Posts

  • 0
Posted
1 hour ago, Irrelevant said:

                set.set("collision_radius", rset.getDouble("m_col_r"));
                set.set("collision_height", rset.getDouble("m_col_h"));

not just elfs, entire female set scales are missing

  • 0
Posted (edited)
2 hours ago, aLzhite said:

not just elfs, entire female set scales are missing

the i see that ,but other races females are totally fine

 

Edited by Irrelevant
  • 0
Posted (edited)
33 minutes ago, aLzhite said:

heights are okay but radius of all females are broken like dwarfs

radius was fine , males and females have so small difference in radius, even change 7 with 10 will be totally fine


 

actually isnt fixed.. it reversed ,now m_col_h isnt work :/ 

Edited by Irrelevant
  • 0
Posted (edited)
10 hours ago, ZaunProject said:

What you mean by getSex method? I think your idea wont work that way

i dont know what else to think, i need to fix females collisions(height and radius) , i find other packs to search for fix but without success  :/ . i am struggling 1week with this s**t

Edited by Irrelevant

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

    • IAM one of customers of this project. Have anti cheat, have user panel everything is working. Blocking adrenaline trashy plans without any problems.  So just GL for all lin2 project. I get support every time I need it. 
    • Convert package formats from Old to New in one click Create new packages of any format Lineage2Ver121 encryption (included in the package) Safe editing: work in a copy, full undo history (Ctrl+Z / Ctrl+Shift+Z), single "Save" button System integration Open .utx / .ugx files with a single click in Explorer (associations are registered during installation) One example: open a file and add its tab to an existing window Multilingual interface (EN, RU, UK, ES, PT, EL, KO, VI, ZH) — the language is picked up from the system Supported formats Packages: UTX, UGX Textures: RGBA8, DXT1, DXT3, DXT5, G16, P8 Resources: GFX (Scaleform) Requirements Windows. Java is not required—it's included in the build. Installation Run La2Tools-3.0.2.exe—the installer will create shortcuts and register related files. Alternatively, use the portable version. https://la2.tools/files/La2Tools_3.0.3_setup.exe   https://la2.tools/files/La2Tools_3.0.3_portable.zip  - Portable version  
    • WHEN SAYING “YES” IS A MISTAKE Not every project is worth taking on, even if the client is ready to pay. Sometimes refusing isn’t about losing money — it’s about protecting your reputation and time. Over the years, we’ve learned to quickly spot the cases that are almost guaranteed to turn into problems. Here are the most common situations where we turn down work: ▪ The client wants it “like everyone else’s,” but with lots of custom changes and on a minimal budget ▪ There are no proper source materials, yet the deadlines are already burning and everything is needed “yesterday” ▪ Constant changes to requirements after the work has already started ▪ A task with a very low chance of success, but very high expectations ▪ The client isn’t willing to discuss the process and sees us as just an executor - A good result almost always starts when both sides have an honest understanding of the risks and real possibilities of the project. If you’re currently discussing a project and unsure whether to move forward — write to us. We’ll honestly and directly tell you whether it’s worth taking on or if it’s better to look for another solution. › TG: @mustang_service_ms ( https:// t.me/ mustang_service_ms ) › Channel: Mustang Service ( https:// t.me/ +JPpJCETg-xM1NjNl ) #documents #drawing #photoshop #refuse #cases
    • The price reflects the value of the project, not just the source files. This is a complete, production-ready server that has already proven itself over the course of a full year, with a loyal player base and no major issues requiring ongoing development. To put it into perspective, the asking price is approximately what the server generated in one year. You're not buying an unfinished pack that still needs months of work, you're buying a polished, fully tested, revenue-proven project that's ready to go online. Considering that, I believe €35000 is a fair price.
    • How we can explain the amount? Is something special there in?
  • 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..