Jump to content

Recommended Posts

Posted

if (target.getAccessLevel() > 100)

Shouldn't it be

if (target.getAccessLevel() != 0)

?

 

And you should change it

+if (Config.ANNOUNCE_FAMOUS_PLAYER)
+            Announcements.getInstance().announceToAll("Famous player "+activeChar.getName()+" is currently online");

And check if activechar is famous player, not? (inside the "if" already done)

 

And...

if (player.isFamous())
+			    		{
+			    			player.sendMessage("This guy is already famous player");
+			    			return;
+			    		}

The message shouldn't be... "You are a famous player, you can't vote" ? Coz you're checking "player." not "target." (or change player. for target. and move it down some lines)

 

pd: not tested

Posted

Hi i am trying to make this work for my server i am using Hi Five L2J and every thing i added i had no errors, but when i made the L2FamousPlayerInstance.java i pasted the codes and made it to work for my server, but i still have 26 errors:

 

 

/*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.gameserver.model.actor.instance;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.List;
import java.util.StringTokenizer;

import javolution.util.FastList;

import com.l2jserver.Config;
import com.l2jserver.L2DatabaseFactory;
import com.l2jserver.gameserver.Announcements;
import com.l2jserver.gameserver.model.L2World;
import com.l2jserver.gameserver.model.actor.templates.L2NpcTemplate;

/**
* @author fanky
*
*/
public class L2FamousPlayerInstance extends L2NpcInstance
{


/**
* @param objectId
* @param template
*/
public L2FamousPlayerInstance(int objectId, L2NpcTemplate template)
{
	super(objectId, template);
}

public void onByPassFeedBack(L2PcInstance player,String command)
{
	if (command.startsWith("voteFamousPlayer"))
		    	{
		    		String val = command.substring(14);
		    		StringTokenizer st = new StringTokenizer(val);
		    		
		    		if(st.countTokens() != 1)
		    		{
		    			return;
		    		}
		    		
		    		if (player.getFamousPlayer() != null)
		    		{
		    			player.sendMessage("You have already voted for a player, "player.getFamousPlayer()".");
		    			return;
		    		}
		    		if (player.isFamous())
		    		{
		    			player.sendMessage("You are famous player,u cant vote");
		    			return;
		    		}
		    		L2PcInstance target = L2World.getInstance().getPlayer(st.nextToken());
		    		
		    		if (target == null)
		    		{
		    			player.sendMessage("There isn't such character");
		    			return;
		    		}
		    		if (target.getAccessLevel() > 100)
		    		{
		    			player.sendMessage("Admins and gms don't need to become famous,they already are :P");
		    			return;
		    		}			    		
		    		if (target.getPvpKills() > Config.PVP_REQUIRED_TO_VOTE)
		    		{
		    						
		    		target.setFamousPlayerVotes(target.getFamousPlayerVotes()1);
		    		player.sendMessage("You have successfully voted for "target.getName()".");
		    		target.sendMessage(player.getName()" has voted for you to be a famous player,you currently have "target.getFamousPlayerVotes()" votes");
		    		if (target.getFamousPlayerVotes() == Config.VOTES_REQUIRED_TO_BECOME_FAMOUS)
		    		{
		    			target.setFamous(true);
		    			Announcements.getInstance().announceToAll(target.getName()" has become Famous Player because he reached "Config.VOTES_REQUIRED_TO_BECOME_FAMOUS" vote");
		    			target.setFamousPlayerVotes(0);
		    			cleanDatabase(target.getName());
		    			target.sendMessage("You've become Famous player.");
		    		}
		    		else
		    		{
		    			target.sendMessage("You need at least "Config.PVP_REQUIRED_TO_VOTE" pvp(s) in order to vote");
		    		}
		    	}
		    }
		}
		    
		    private void cleanDatabase(String pname)
		    {
		    	Connection con = null;
		    	try
		    	{
		    		con = L2DatabaseFactory.getInstance().getConnection();
		    		PreparedStatement st = con.prepareStatement("UPDATE characters SET famousplayer=null WHERE famousplayer="pname);
		    		st.execute();
		    		st.close();
		    	}
		    	catch (SQLException sqle)
		    	{
		    		for (L2PcInstance gmchat : L2World.getInstance().getAllGMs())
		    		{
		    			gmchat.sendMessage("There was a problem while updating database on famousplayer column,Noobs!");
		    		}
		    	}
		    	finally
		    	{
		    		try
		    		{
		    			con.close();
		    		}
		    		catch (SQLException sqle2)
		    		{ 
		    			
		    		}
		    	}
		    }
		    
		    @Override
			public String getHtmlPath(int npcId, int val)
		    {
		        String pom = "";
		        if (val == 0)
		        {
		            pom = ""  npcId;
		        }
		        else
		        {
		            pom = npcId  "-"  val;
		        }

		        return "data/html/famousplayer/"  pom  ".htm";
		    }	
}

 

 

Here are the errors, what can i do to fix this thanks so much

 

 

Description	Resource	Path	Location	Type
Syntax error, insert ")" to complete MethodInvocation	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 62	Java Problem
Syntax error, insert ";" to complete BlockStatements	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 62	Java Problem
The operator > is undefined for the argument type(s) L2AccessLevel, int	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 77	Java Problem
Syntax error on token "1", delete this token	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 85	Java Problem
The method getFamousPlayer() in the type L2PcInstance is not applicable for the arguments (String)	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 62	Java Problem
Syntax error on token ")", delete this token	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 62	Java Problem
Syntax error on token "PVP_REQUIRED_TO_VOTE", ( expected after this token	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 98	Java Problem
The method PVP_REQUIRED_TO_VOTE(String) is undefined for the type Config	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 98	Java Problem
Syntax error on token "pname", delete this token	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 110	Java Problem
Syntax error on token "npcId", delete this token	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 140	Java Problem
Syntax error on token "" has become Famous Player because he reached "", [ expected	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 91	Java Problem
Syntax error on token "" vote"", ] expected	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 91	Java Problem
Syntax error, insert ")" to complete MethodInvocation	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 98	Java Problem
Syntax error, insert ";" to complete BlockStatements	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 98	Java Problem
The type of the expression must be an array type but it resolved to String	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 87	Java Problem
Syntax error on token "" has voted for you to be a famous player,you currently have "", [ expected	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 87	Java Problem
Syntax error on token "" votes"", ] expected	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 87	Java Problem
The type of the expression must be an array type but it resolved to String	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 91	Java Problem
Syntax error, insert ")" to complete MethodInvocation	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 86	Java Problem
Syntax error, insert ";" to complete Statement	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 86	Java Problem
The method getName() in the type L2Object is not applicable for the arguments (String)	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 86	Java Problem
Syntax error on token ")", delete this token	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 86	Java Problem
Syntax error on token ""-"", . expected	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 144	Java Problem
The primitive type int of npcId does not have a field val	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 144	Java Problem
Syntax error on token "pom", invalid AssignmentOperator	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 147	Java Problem
The left-hand side of an assignment must be a variable	L2FamousPlayerInstance.java	/L2J_Server/java/com/l2jserver/gameserver/model/actor/instance	line 147	Java Problem

  • 2 weeks later...
Posted

It should work.

I coded from scrath,dunno if i miss something >.> but seems that I didnt.

whatever,just report it here if it doesn't workin' properly.

Check again your code....

nice idea ;)

  • 6 months later...
Posted

can u remake the code for l2jfrozen? :D please T.T

Well fanky cant code it for L2JFrozen cause he study for university if i remember well.
Posted

Well fanky cant code it for L2JFrozen cause he study for university if i remember well.

 

why u spam? u could send that via PM

  • 1 month later...
Posted

bump to this.I want to know if someone tested this..

 

can someone give me a feedback..?

why you put this method in PcInstance ?

 

+	public String getFamousPlayer()
+	{
+		    return famousplayer;
+	}

Posted

why you put this method in PcInstance ?

 

+	public String getFamousPlayer()
+	{
+		    return famousplayer;
+	}

so it can be safely accessed, if anyone wanted so

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

    • Reconstructed the MSNP8 client/server chain in Lineage 2 (from C4 to HFp5) with full protocol capabilities + added Discord integration    Clean MSNP8:       MSNP8 + Discord Bridge:   
    • I'm looking for the GVE code for Luecera2.
    • Recommended seller, I'm using his services. Good luck @Ave
    • https://l2.gamedream.pl/ Update #2 — GameDream Interlude (C6)     This update focuses on Epic bosses, quest chains and overall QoL :cool Highlights: Frintezza access follows a full retail-like chain: Four Goblets → Last Imperial Prince → Journey to a Settlement Retail-like entry requirements restored (scroll + Command Channel) Four Goblets quest is now available in-game Shot visuals synced with attack/skill usage Community Board Premium Shop refreshed with classic Interlude buttons and cleaner tables Epic Raidboss access: Frintezza — 4–5 party Command Channel + scroll + Antique Brooch Antharas — Portal Stone Baium — Bloody Fabric Valakas — Floating Stone Queen Ant / Core / Orfen / Zaken — no quest gates Bug Fixes & QoL: Frintezza quest chain fully fixed TvT rewards — single reward + anti-abuse protection Shots — no double triggering Premium Shop — no blank tabs Mammon NPCs in Giran working correctly Cancel works retail-like (up to 5 buffs removed) Summon Friend fixed with anti-exploit guards YetiBuffer — Saved Buff Profiles (Save / Clear / Restore) PvE — increased aggro range + balance tweaks EXP toggle commands: expoff / expon / expblock Thanks for testing and feedback — more updates coming soon ❤️
    • Hello I would like to offer You my NEW 2026 Updater / Launcher with custom skins.   - UPDATER FEATURES -   1. Performance and Intelligent Resource Management: Smart Disk Detection (SSD/HDD): The updater automatically detects the user's drive type. For SSD/NVMe drives: Launches up to 8-12 concurrent threads, utilizing the full yet optimized connection speed. For HDD drives: Limits the thread count (to 2-3) to prevent computer slowdowns and avoid overloading the drive head. Multi-threaded Downloading: Instead of downloading file by file, the updater downloads multiple files simultaneously, drastically reducing update time. ZSTD Compression: Support for the modern Zstandard compression algorithm (.zst). Files are downloaded in compressed form and decompressed on the fly, saving bandwidth and accelerating downloads. HTTP/2 and Keep-Alive Support: Utilizing the HTTP/2 protocol and persistent connections allows for the instant download of thousands of small files without establishing a new connection for each one.   2. Modern User Interface (UI/UX): Transparency and PNG Graphics: Support for irregular window shapes, allowing for the creation of a unique, modern launcher look. Taskbar Integration: The progress bar is displayed not only in the window but also on the Windows taskbar icon. Built-in News Browser (Optional): The updater features a built-in browser module that displays news/changelogs directly within the launcher (without opening an external browser). Multi-language Support (Optional): Built-in language switching system (e.g., EN/PL/RU, etc.) with dynamic loading of button graphics and text. Animated Buttons (Optional): Dedicated, animated buttons redirecting to Discord, Facebook, YouTube, Instagram, and the website.   3. Technical Features and Application Security: Anti-Dual Run (Optional): The updater checks if the game is already running to prevent file conflicts during updates. Error Diagnostics: Built-in logging system (debug_log.txt) and hardware exception handling (SEH), facilitating the diagnosis of problems for players who cannot run the game. Internal Configuration: Updater settings are stored inside the .exe file, eliminating publicly accessible configuration files.   4. File Categorization (Normal vs. Critical vs. Once): Critical Files: Critical files are verified more thoroughly (via MD5 Hash) even in quick check mode to guarantee stability. Normal Files: Standard game files (textures, models, sounds) are checked depending on the selected mode (Quick vs. Full). Once Files (Overwrite Exclusions): Applies to user configuration files (e.g., Option.ini, User.ini).   5. Check Modes (Verification Algorithms): Self-Update: The updater can update itself before checking game files, allowing for easy deployment of launcher fixes. The updater supports two main operating modes that switch intelligently based on user action: Smart Check (Startup Quick Check): Runs automatically upon updater startup or pressing the START button (unless a full check is forced). Full Check (Full MD5 Verification): Manually triggered by the player via the "Full Check" button. Automatic Update Detection: If a newer version of a file appears on the server, it is automatically detected and downloaded without player interaction. Atomic Updates: Files are downloaded and verified first, and only then saved to the disk. This prevents game client corruption in case of internet connection loss. The entire process takes seconds, even with clients weighing 30GB+. - PATCH BUILDER FEATURES -   1. Professional File Structure Management (Tree-List Hybrid): Directory Tree Visualization: Instead of a flat file list, the Builder displays a clear structure of folders and subfolders. You can collapse and expand entire tree branches, facilitating work with thousands of files. Normal and Critical Division: A clear window division into two main zones: Normal Files and Critical Files. Ghost and Excluded Files Division: The interface visually informs about the status of unchanged files (existing in the previous patch version) and files excluded from the update. Show/Hide Ghosts: With one click, you can hide unchanged files to focus solely on what you are actually sending to players in this update.   2. Intuitive Interaction: Drag & Drop: Full Drag & Drop support. You can grab files or entire folders and drag them between the "Normal" and "Critical" lists. Transfer is intelligent – it moves the entire content of selected folders. Keyboard Shortcuts: Fast workflow thanks to keyboard support: Delete, Enter, Ctrl+A / Ctrl+C (select and copy paths).   3. Advanced Filtering and Searching: Context Search: The search bar works in real-time, filtering the file tree. Type /folder: Searches only within folder names. Type *ex: Shows only excluded files. Standard Typing: Searches files by name.   4. Automation and Security: Auto Self-Update: The Builder automatically detects the updater executable file. Real-Time Statistics: The status bar continuously shows the file count (Normal/Critical), total patch weight (in Bytes/MB/GB), and the last update date. System File Protection: Files marked as "Critical" cannot be accidentally added to the exclusion list – the program blocks such actions.   5. Performance (Backend): ZSTD Compression: The Builder uses the latest Zstandard algorithm to compress files before sending, ensuring a significantly smaller patch size than standard ZIP, saving server bandwidth and player time. Multi-threading: The packing and MD5 checksum generation process utilizes multiple CPU threads, drastically reducing patch building time.   - PRICING - NEW Updater standard price: 79 euro (if You ask for mods, price will change).   - CONTACT - Discord: ave7309   CLICK HERE TO CHECK LATEST TEMPLATES!                         * I have right to REFUSE to take an order. * Supported games: Lineage 2 / Black Desert / MU Online / Tantra / Rohan / Aion / Cabal / Fiesta any more...  
  • 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..