-
Posts
184 -
Joined
-
Last visited
-
Days Won
5 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Nefer
-
The Opening of L2 Frozen Blackbird there will be on 12/12/2010 about at 13.00 ( GMT +2 ).
-
+10 with Normal Scroll, +11 with Crystal Scroll (Droppable by Epic Boss) The % of the enchant decreases with increasing of weapon/armor enchant. i think
-
Thank you to a friend, we decided to change rate for Augumentations! AugmentationNGSkillChance = 1 AugmentationMidSkillChance = 3 AugmentationHighSkillChance = 4 AugmentationTopSkillChance = 8
-
BETA Server will open on Saturday!
-
If anyone has any advice to improve the server can write and will be taken into consideration. This will be an amazing Server! Nefer
-
[L2Phx] Scripts (Only Gracia Final Server)
Nefer replied to Nefer's topic in Hacks & Cheats [English]
I try the scripts only in Gracia Final Server, hence i don't know if work also in Interlude Server -
Hello MaxCheaters, I use L2 phx in all Server and works very fine. Now i'm playing in a Gracia Final Server, and i'm searching new Scripts that work. I use L2PacketHack v3.5.33.164 and works perfect. In this post i search to upload all scripts that work on Gracia final Server: (I test first the script, and after i post it) =============================== - Auto Target (If a player attacks you, your char take the target of attaker) // Script of Auto-Target // If a player attacks you, your char take the target of attaker // It works on Gracia Final Server // Tested in 6 different Server // Tested by Nefer var Attacker, CharID, ObjectID, SocialID, Status: Integer; procedure TargetAttacker(Attacker: Integer); begin buf:=#$04; WriteD(Attacker); SendToServer; end; begin if FromServer and (pck[1]=#$04) then CharID:=ReadD(18); if FromClient and (pck[1]=#$1B) then begin SocialID:=ReadD(2); case SocialID of 6:Status:=1; 5:Status:=0; end; end; if Status=1 then begin if FromServer and ((pck[1]=#$48) or (pck[1]=#$05)) then begin Attacker:=ReadD(2); ObjectID:=ReadD(6); end; if (Attacker<>ObjectID) and (CharID=ObjectID) then TargetAttacker(Attacker); end; end. =============================== =============================== I try the Scripts ONLY in Gracia final Server, don't ask if they work also in other chronicle. Thank If anyone know where i can find other scripts, he tells me that i try them in gracia final Server ^^ Bye, Nefer
-
Hello boys, I saw in many Site a popUp with the banner to vote. Like this: http://www.white-eagle.com.pl/whiteeng/ Is it possible to have the script for this popUp? Thank a lot :) Bye
-
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
Leeroy ::) -
This is Simple Share, but i will use it :)
-
[SHARE] Change all server npc Tittle's in 1 second!
Nefer replied to Drasius's topic in Server Development Discussion [L2J]
Nothing to special, but good share for newbie ;) -
[SHARE]L2Walker Command Restriction
Nefer replied to Intrepid's topic in Server Shares & Files [L2J]
Mmm.. good share. I tried to use it on L2jserver, and i did some modification. After This: "PARTYROOM_ALL", "PARTYROOM_COMMANDER", "HERO_VOICE", "UNKNOWN", "UNKNOWN", "BATTLEFIELD" }; add this: 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); After this: private String _text; private int _type; private String _target; Add this: static { for (String WalkerCmdlist : WALKER_COMMAND_LIST) WALKER_COMMAND_LIST_SET.add(WalkerCmdlist); } After this: if (_text.length() > 105) { activeChar.sendPacket(new SystemMessage(SystemMessageId.DONT_SPAM)); return; } Add This: String WalkerCmdlist = ""; if (_type == TELL && WALKER_COMMAND_LIST_SET.contains(WalkerCmdlist)) { Util.handleIllegalPlayerAction(activeChar, "Client Emulator Detect: Player " + activeChar.getName() + " using l2walker.", IllegalPlayerAction.PUNISH_KICK); // Todo : punish also target (?) } The last part in L2j server there isn't. With this change, does the protection work? -
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
Sry, but i tried and didn't work. (The patch doesn't give Error, but not work) Did anyone test it? Thank however -
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
-
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
-
2) The negative aspect is that the event is not automatic: I hope that the coder of DM can help our. Bye, i remember -> Good Share!
-
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
-.- If player A puts an item in sell and player B buys the item, player B uses ADENA not Custom_item. This is not problem of client. I know that however the player see ADENA and not the name of Custom item. BUT the player that buys an item USES ADENA. Thank. -
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
Wow! Yea my english is very simple, but i think that you can understand it :) striven! I use your patch, but when a player puts an item in sell or in buy, he sells (or buys) the item for adena not for custom item (in this case item with id 7777 that i choose with 3470 gold bar) Do you understand me? :) -
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
Solved my Error, but now if i buy/sell an item the trade is always for Adena not for custom item. -
[Guide]Change private store currency!
Nefer replied to WizZy™'s topic in Server Shares & Files [L2J]
Fantastic Guide! But gives some error. I use Gracia Final L2j server. The error is in file "PcInventory.java" Now i try to solved the error. -
Yes good Share, but there is an error and one negative aspect. 1) The error is this, report on L2j forum: (Problem with skill) 2) The negative aspect is that the event is not automatic: I hope that the coder of DM can help our. Bye, i remember -> Good Share!
-
Can you make Automatic? As TvT with specific hours 15.00 16.00 ecc ecc Or As CTF with ctf.py Thx TheEnd, good job :)
-
All Event works perfect, but i found three errors: 1) CTF blocking Weddings (The most important to fix) 2) If player register to event, player cant use potions, soe, nothing like on CTF but he is only registrated and event one hour before event, not on event. 3) And server had some problems with classmaster called a double exec of bypasses But the most important is the First point. Thank :)
-
Solved! If anyone wants start the CTF Event with an Auto Start, uses this guide. 1) Create a file cft.py in folder data/scripts/cron/ctf.py 2) Open file ctf.py and copy this: import sys from net.sf.l2j.gameserver.model.entity import CTF CTF.loadData() CTF.autoEvent() 3) Open your Data Base and enter in table 'global_tasks' and inster this: INSERT INTO `global_tasks` VALUES ('5', 'jython', 'TYPE_FIXED_SHEDULED', '0', '1000', '120000', 'ctf.py'); You can change the values: 1000 is the time between server starts and event starts (in millisecond, 1000 = 1 second) 120000 how many time should pass before event repeats again Bye boys ^^
-
Nothing? This post can be considerated as Up.
