-
Posts
5,521 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Intrepid
-
[Help] Geodata-mobs glitching
Intrepid replied to MeVsYou's question in Request Server Development Help [L2J]
search for a better geodata OR delete the file of the bugged regions -
[Search] Server Staff
Intrepid replied to Syntax's question in Request Server Development Help [L2J]
what kind of things you need?(im interested only in core/dp development) -
why you cant stay offtopic? ps.:as i see hardcode is dead Sep 29 11:51 Stefoulis15 @ L2J-HardCode removed Stefoulis15
-
[Request]Hero Status Seller
Intrepid replied to Xerus's question in Request Server Development Help [L2J]
have you ever tried to do it or you just "cmon guys im lazyass do it for me"... change the imports to net.sf.l2j and delete one PcAppearance import because its have 2 of them... its not hard only for lazy ass "plzzzzz plzzzzzz do it for me" type of kids...and ofc it has been written million times post farmer... -
Gameserver Memory
Intrepid replied to DragonSwords's question in Request Server Development Help [L2J]
actually its not bullshit... 32bit java cant hold more heap size than 1,5gb thats why he said that...64bit can go over 1,5gb and btw why change xms settings...first maybe you need to read about xmx xms and xmn values. -
[SHARE]L2Walker Command Restriction
Intrepid replied to Intrepid's topic in Server Shares & Files [L2J]
should i start to read about L2Net too ? :D -
[SHARE]L2Walker Command Restriction
Intrepid replied to Intrepid's topic in Server Shares & Files [L2J]
L2Net dont use commands -
[share]Elemental enchanting chance now at config.
Intrepid replied to Flash™'s topic in Server Shares & Files [L2J]
whats the point of copy a timeline? -
How Can i get my php site online to a website?
Intrepid replied to newguy's question in Request Server Development Help [L2J]
Topic locked l2dvc -1 karma. -
[SHARE]L2Walker Command Restriction
Intrepid replied to Intrepid's topic in Server Shares & Files [L2J]
yes works -
[SHARE]L2Walker Command Restriction
Intrepid replied to Intrepid's topic in Server Shares & Files [L2J]
1st post updated! -
[SHARE]L2Walker Command Restriction
Intrepid replied to Intrepid's topic in Server Shares & Files [L2J]
can you tell me whats the command of the auto accept party? -
[Tool][The New from L2Control, L2Fish]
Intrepid replied to GrisoM's topic in Hacks & Cheats [English]
these programs maybe not work anymore NCSoft made a huge security update that means new gameguard and a protection every program thats not on their list need to get closed otherwise you cant start the game :) -
theres a video on youtube which says make a "prey procedure" before enchant and it will succed thats what he wrote :D totally epic fail :D
-
as i see its only the tipical "nc share ty br0" posts i think first we should just warn him
-
[SHARE]L2Walker Command Restriction
Intrepid replied to Intrepid's topic in Server Shares & Files [L2J]
L2Walker use commands these commands get used in the ALL chat channel(the white one)but you dont see it thats why its a bot that share if its working ofc i shared it for testing restrict these commands so when the walker try to use them the system punish him with a jail by default if you want to change it change that value IllegalPlayerAction.PUNISH_JAIL to another that you want. -
[HELP]How to add custom weapons,armors etc..
Intrepid replied to Todoulis's question in Request Server Development Help [L2J]
thats client mod request closed. -
I've a few minutes of free time so i made this little patch to kill L2Walker :) The idea came from L2JOfficial i just searched on the internet for Gracia Final Walker Commands :P Credits to me Please give test results :) V2.: after more research as i see all commands are uppercase so i changed them to uppercase ### Eclipse Workspace Patch 1.0 #P l2emu-game Index: src/main/java/com/l2emu/gameserver/network/clientpackets/Say2.java =================================================================== --- src/main/java/com/l2emu/gameserver/network/clientpackets/Say2.java (revision 2030) +++ src/main/java/com/l2emu/gameserver/network/clientpackets/Say2.java (working copy) @@ -15,6 +15,7 @@ package com.l2emu.gameserver.network.clientpackets; import java.nio.BufferUnderflowException; +import java.util.HashSet; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.Logger; @@ -29,11 +30,6 @@ import com.l2emu.gameserver.util.IllegalPlayerAction; import com.l2emu.gameserver.util.Util; -/** - * This class ... - * - * @version $Revision: 1.16.2.12.2.7 $ $Date: 2005/04/11 10:06:11 $ - */ public final class Say2 extends L2GameClientPacket { private static final String _C__38_SAY2 = "[C] 38 Say2"; @@ -56,10 +52,19 @@ public final static int BATTLEFIELD = 20; private final static String[] CHAT_NAMES = { "ALL ", "SHOUT", "TELL ", "PARTY", "CLAN ", "GM ", "PETITION_PLAYER", "PETITION_GM", "TRADE", "ALLIANCE", "ANNOUNCEMENT", // 10 "WILLCRASHCLIENT:)", "FAKEALL?", "FAKEALL?", "FAKEALL?", "PARTYROOM_ALL", "PARTYROOM_COMMANDER", "HERO_VOICE", "UNKNOWN", "UNKNOWN", "BATTLEFIELD" }; + private static final String[] WALKER_COMMAND_LIST = { "USESKILL", "USEITEM", "BUYITEM", "SELLITEM", "SAVEITEM", "LOADITEM", "MSG", "SET", "DELAY", "LABEL", "JMP", "CALL", + "RETURN", "MOVETO", "NPCSEL", "NPCDLG", "DLGSEL", "CHARSTATUS", "POSOUTRANGE", "POSINRANGE", "GOHOME", "SAY", "EXIT", "PAUSE", "STRINDLG", "STRNOTINDLG", "CHANGEWAITTYPE", + "FORCEATTACK", "ISMEMBER", "REQUESTJOINPARTY", "REQUESTOUTPARTY", "QUITPARTY", "MEMBERSTATUS", "CHARBUFFS", "ITEMCOUNT", "FOLLOWTELEPORT" }; + private final static HashSet<String> WALKER_COMMAND_LIST_SET = new HashSet<String>(301); private String _text; private int _type; private String _target; - + static + { + for (String WalkerCmdlist : WALKER_COMMAND_LIST) + WALKER_COMMAND_LIST_SET.add(WalkerCmdlist); + } + @Override protected void readImpl() { @@ -105,7 +110,9 @@ activeChar.sendPacket(new SystemMessage(SystemMessageId.DONT_SPAM)); return; } - if (Config.BAN_CLIENT_EMULATORS && _type == TELL && _text.startsWith("FOLLOWTELEPORT")) + + String WalkerCmdlist = ""; + if (Config.BAN_CLIENT_EMULATORS && _type == TELL && WALKER_COMMAND_LIST_SET.contains(WalkerCmdlist)) { Util.handleIllegalPlayerAction(activeChar, "Client Emulator Detect: Player " + activeChar.getName() + " using l2walker.", IllegalPlayerAction.PUNISH_JAIL); // Todo : punish also target (?)
-
yeah i smoke now for 6 years its that bad
-
use windows7 x64 ok you have 2gb ram BUT the difference beetwen x86 and x64 is not only the maximum memory.Its in the programs work the programs feel them better under x64. And why windows 7? faster than everything faster than vista even xp and its the most easier in usage and that comes with great compatibility. About overlocking well core 2 duo cpus are nice in that you can go to 3ghz with a stock cooling
-
Leeroy i need to say you are naab with dagger :D 1.dye DEX +4 STR -4 DEX +1 STR -1 and thats all if you are in HR where you have 99buff add CON +4 STR -4 2.gears well as i see your guide is for shitlude draconic + tateo set is ok and if somebody have rb jewels yeah why not..but dagger...crit dmg SA is better than haste just try it out but the best dagger is demon dagger mortal strike with as many enchant as possible 3.buffs i dont say anything...prophecy of wind of dagger congratz-.-" 4.pvp tactics you are the biggest noob dagger pvper ever. every class can be beaten by a dagger the main skills that good for pvp: mirage(best if you are far away from the enemy) trick,switch(to get to the back of the enemy) in servers where you dont have full buff(low rates for ex) sand bomb good to especially against archers or destros ultimate evasion(only against fighters against archers good to use it to get closer against meele fighter good to use it in close combat) dash(to get closer and to move faster around the enemy to give a blow from side or from back) blinding blow is the same as dash except its a blow so you need to get closer first but its better since its a fix damage critical blow good to use before a basically high chance skill for example critical blow + deadly blow(critical blow increase your blow land rate and deadly blow has a high chance basically(70%from back 60%from side 50%front) focus chance,power(1min skills so better to use it in close combat i prefer chance because more successed blow is better than a few huge blow) focus skill mastery(use it for short time only in close combat because of the mp consume) tactics against different type of classes: basically you need to move around the enemy fast to find the position where you can give a blow from side or from back. mages: blow from side or from back always first with a critical blow to get a higher blow land rate than focus chance and blow hits from side or from back from front use only deadly blow.If at start you are far away use mirage + dash to get closer meele fighters: pick a bow and try to give as much damage as possible without any close combat than dash + ulti evasion in close combat and again the tipical trick/switch maybe bluff and blows from side or back after a critical blow and focus chance long range fighters: sand bomb to decrease accuracy than ulti eva + dash to get closer if you want you can use mirage too and again the same tactic trick/switch/bluff and blows after a critical blow and focus chance or power and only from side or back. in pvp daggers use a lot of mana so good to have a bless the soul with you it will help a lot. and daggers dont need patk?man you are a fail.Lethal Success rate depends on p.atk and STR modifier :D also i see you posted daggers dont need crit rate...fail again.Daggers have small patk if your mana run out what you will do?hit hit hit to get a mastery for a few sec and less mana usage on blows but how in the blue hell you can give damage with a dagger simple hit if its not critical? also about tanks...need 10 blow to kill?man if you go close to a tank than get lost...get a bow with high enchant and kite him(if you know the word "kite")you will do small damage and hard to kill a tanker as always but if you go close bb shield stun and he keep you in shield stun until you are dead because the con of daggers is not too much so you dont have a big chance to resist it.
-
[What 3 websites do you visit everyday without fail?]
Intrepid replied to GrisoM's topic in Spam Topics
1.youtube.com 2.maxcheaters.com 3.pmmk.pte.hu(my universitys webpage)