Jump to content

Styx

Banned
  • Posts

    100
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by Styx

  1.  

    I think it should be something like that:

        @Override
        public void onBypassFeedback(L2PcInstance player, String command)
        {
        	StringTokenizer st = new StringTokenizer(command, " ");
        	String actualCommand = st.nextToken();
        	
        	if (actualCommand.equalsIgnoreCase("getbuff"))
        	{
    		String[] buffsArray = command.substring(actualCommand.length).trim().split(";");
    		for(String buffString : buffsArray)
    		{
    			String[] idLevelString = buffString.split(" ");
    			int buffid = Integer.parseInt(idLevelString[0]);
    			int bufflevel = idLevelString.length > 1 ? Integer.parseInt(idLevelString[1]) : 1;
    			
    			if (buffid != 0 && !player.isDead())
    			{
    				SkillTable.getInstance().getInfo(buffid, bufflevel).getEffects(this, player);
    				broadcastPacket(new MagicSkillUse(this, player, buffid, bufflevel, 500, 0));
    			}
    		}
    			
    		showChatWindow(player);
        	}
        	else if (actualCommand.equalsIgnoreCase("restore"))
        	{
        		if (!player.isDead())
        		{
        			player.setCurrentHp(player.getMaxHp());
        			broadcastPacket(new MagicSkillUse(this, player, 1258, 4, 500, 0));
            		showChatWindow(player);
        		}
        	}
        	else if (actualCommand.equalsIgnoreCase("cancel"))
        	{
        		if (!player.isDead())
        		{
        			player.stopAllEffects();
        			broadcastPacket(new MagicSkillUse(this, player, 1056, 12, 500, 0));
            		showChatWindow(player);
        		}
        	}
        	else
        		super.onBypassFeedback(player, command);
        }
    

     

    I will check it now thanks for your time..

  2. Hi

     

    Could you show me whats before the code you have pasted? I would like to see how buffid and bufflevel is taken from String, so i can find out best changes in code without guessing :)

     

    Thanks for help.

     /*
     * 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 net.sf.l2j.gameserver.model.actor.instance;
    
    import java.util.StringTokenizer;
    
    import net.sf.l2j.gameserver.ai.CtrlIntention;
    import net.sf.l2j.gameserver.datatables.SkillTable;
    import net.sf.l2j.gameserver.model.actor.L2Npc;
    import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
    import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;
    import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
    import net.sf.l2j.gameserver.network.serverpackets.MagicSkillUse;
    import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate;
    
    
    public final class L2BufferInstance extends L2NpcInstance
    {
        public L2BufferInstance(int objectId, L2NpcTemplate template)
        {
            super(objectId, template);
        }
        
        @Override
    	public void onAction(L2PcInstance player)
    	{
    		// Set the target of the L2PcInstance player
    		if (player.getTarget() != this)
    			player.setTarget(this);
    		else
    		{
    			// Check if the player is attackable (without a forced attack) and isn't dead
    			if (isAutoAttackable(player) && !isAlikeDead())
    			{
    				// Check the height difference, this max heigth difference might need some tweaking
    				if (Math.abs(player.getZ() - getZ()) < 400)
    				{
    					// Set the L2PcInstance Intention to ATTACK
    					player.getAI().setIntention(CtrlIntention.ATTACK, this);
    				}
    				else
    				{
    					// Send ActionFailed (target is out of attack range) to the L2PcInstance player
    					player.sendPacket(ActionFailed.STATIC_PACKET);
    				}
    			}
    			else if (!isAutoAttackable(player))
    			{
    				// Calculate the distance between the L2PcInstance and the L2NpcInstance
    				if (!canInteract(player))
    				{
    					// Notify the L2PcInstance AI with INTERACT
    					player.getAI().setIntention(CtrlIntention.INTERACT, this);
    				}
    				else
    				{
    					// Rotate the player to face the instance
    					player.sendPacket(new MoveToPawn(player, this, L2Npc.INTERACTION_DISTANCE));
    					
    					// Send ActionFailed to the player in order to avoid he stucks
    					player.sendPacket(ActionFailed.STATIC_PACKET);
    					
    					// Send the freaking chat window
    					showChatWindow(player);
    				}
    			}
    			// Send a Server->Client ActionFailed to the L2PcInstance in order to avoid that the client wait another packet
    			player.sendPacket(ActionFailed.STATIC_PACKET);
    		}
    	}
        
        @Override
        public void onBypassFeedback(L2PcInstance player, String command)
        {
        	StringTokenizer st = new StringTokenizer(command, " ");
        	String actualCommand = st.nextToken();
        	
        	int buffid = 0, bufflevel = 1;
        	if (st.countTokens() == 2)
        	{
        		buffid = Integer.valueOf(st.nextToken());
        		bufflevel = Integer.valueOf(st.nextToken());
        	}
        	else if (st.countTokens() == 1)
        		buffid = Integer.valueOf(st.nextToken());
        	
        	if (actualCommand.equalsIgnoreCase("getbuff"))
        	{
        		if (buffid != 0 && !player.isDead())
        		{
        			SkillTable.getInstance().getInfo(buffid, bufflevel).getEffects(this, player);
        			broadcastPacket(new MagicSkillUse(this, player, buffid, bufflevel, 500, 0));
        			showChatWindow(player);
        		}
        	}
        	else if (actualCommand.equalsIgnoreCase("restore"))
        	{
        		if (!player.isDead())
        		{
        			player.setCurrentHp(player.getMaxHp());
        			broadcastPacket(new MagicSkillUse(this, player, 1258, 4, 500, 0));
            		showChatWindow(player);
        		}
        	}
        	else if (actualCommand.equalsIgnoreCase("cancel"))
        	{
        		if (!player.isDead())
        		{
        			player.stopAllEffects();
        			broadcastPacket(new MagicSkillUse(this, player, 1056, 12, 500, 0));
            		showChatWindow(player);
        		}
        	}
        	else
        		super.onBypassFeedback(player, command);
        }
        
        @Override
        public void showChatWindow(L2PcInstance player)
        {
        	// Send a Server->Client NpcHtmlMessage containing the text of the L2Npc to the L2PcInstance
        	NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
    		html.setFile("data/html/gold/buffer.htm");
    		html.replace("%objectId%", getObjectId());
    		player.sendPacket(html);
    		
    		// Send a Server->Client ActionFailed to the L2PcInstance in order to avoid that the client wait another packet
    		player.sendPacket(ActionFailed.STATIC_PACKET);
        }
    }
    
  3. Hello guys .

     

     

     

    I want to do this in in my Buffer npc who know how?

     

     

     

    Default :

     

    <a action="bypass -h npc_%objectId%_getbuff 1204 130">

     

     

    To work like This :

     

    <a action="bypass -h npc_%objectId%_getbuff 1204 130;1003 130;1004 130">

    if (actualCommand.equalsIgnoreCase("getbuff"))
        	{
        		if (buffid != 0 && !player.isDead())
        		{
        			SkillTable.getInstance().getInfo(buffid, bufflevel).getEffects(this, player);
        			broadcastPacket(new MagicSkillUse(this, player, buffid, bufflevel, 500, 0));
        			showChatWindow(player);
        		}
        	}
    

    I try some methods but i failed ... :|

     

    Project aCis.

  4. Just i lost 20 euro >.>

    [20/10/2014 10:19:16 πμ] L2Spring Hi5: Hi
    [20/10/2014 10:19:19 πμ] L2Spring Hi5: dont be scary !
    [20/10/2014 10:19:35 πμ] L2Spring Hi5: Im still waiting to on Xp-dev
    [20/10/2014 12:11:50 μμ] L2Spring Hi5: Check You mail
    [20/10/2014 2:59:03 μμ] Styx -: Ok mate :)
    [20/10/2014 2:59:22 μμ] Styx -: i was scary because is my only money i hope to understand
    [20/10/2014 3:01:11 μμ] L2Spring Hi5: yes :)
    [20/10/2014 3:01:17 μμ] L2Spring Hi5: But I wrote,, dont panic :D
    [20/10/2014 3:01:29 μμ] Styx -: ok :)
    [20/10/2014 3:01:31 μμ] Styx -: thanks
    [20/10/2014 3:01:38 μμ] Styx -: someone say about seven sign
    [20/10/2014 3:01:40 μμ] Styx -: is bugged
    [20/10/2014 3:02:56 μμ] L2Spring Hi5: Yes, I know something
    [20/10/2014 3:02:59 μμ] L2Spring Hi5: I will check it
    [20/10/2014 3:06:18 μμ] Styx -: someone say about problems in project
    [20/10/2014 3:06:22 μμ] Styx -: why you dont fix it mate?
    [20/10/2014 3:06:27 μμ] Styx -: is serious problems
    [20/10/2014 3:07:17 μμ] L2Spring Hi5: I never found problem where I can fix this problem
    [20/10/2014 3:07:19 μμ] L2Spring Hi5: But
    [20/10/2014 3:07:25 μμ] L2Spring Hi5: I need to make list of bugs
    [20/10/2014 3:07:26 μμ] L2Spring Hi5: and I will fix it
    [20/10/2014 3:07:35 μμ] L2Spring Hi5: someone say this.. and next say ohers..
    [20/10/2014 3:07:36 μμ] L2Spring Hi5: Others
    [20/10/2014 3:07:49 μμ] L2Spring Hi5: I need to try it or someone need to make video on youtube
    [20/10/2014 3:08:03 μμ] Styx -: i do it , i will check all possible problems
    [20/10/2014 3:08:09 μμ] Styx -: i check and the packets too
    [20/10/2014 3:08:18 μμ] Styx -: and i send you the problems
    [20/10/2014 3:08:23 μμ] L2Spring Hi5: Ok
    [20/10/2014 3:08:25 μμ] L2Spring Hi5: Thanks you
    [20/10/2014 3:08:37 μμ] Styx -: because many peoples do stupid things in config
    [20/10/2014 3:08:40 μμ] Styx -: np :)
    [20/10/2014 3:16:01 μμ] Styx -: you fiish the quest from ertheia?
    [20/10/2014 3:16:02 μμ] Styx -: :)
    [20/10/2014 3:16:05 μμ] Styx -: finish*
    [20/10/2014 3:16:26 μμ] L2Spring Hi5: 50 % done
    [20/10/2014 3:16:36 μμ] L2Spring Hi5: Others I need to exp on L2off :D
    [20/10/2014 3:16:40 μμ] Styx -: nice nice
    [20/10/2014 3:16:45 μμ] L2Spring Hi5: I need to get 85 lv on off
    [20/10/2014 3:16:49 μμ] L2Spring Hi5: and I have 55
    [20/10/2014 3:16:54 μμ] Styx -: u want my account
    [20/10/2014 3:16:55 μμ] Styx -: ?
    [20/10/2014 3:16:58 μμ] Styx -: i have 87
    [20/10/2014 3:17:00 μμ] L2Spring Hi5: Class ?
    [20/10/2014 3:17:04 μμ] Styx -: ertheia
    [20/10/2014 3:17:14 μμ] Styx -: ahh
    [20/10/2014 3:17:16 μμ] Styx -: cb
    [20/10/2014 3:17:18 μμ] L2Spring Hi5: I need to check quest after 50 lv..
    [20/10/2014 3:17:26 μμ] L2Spring Hi5: and record these quests
    [20/10/2014 3:17:31 μμ] Styx -: ah
    [20/10/2014 3:17:32 μμ] Styx -: 1-1?
    [20/10/2014 3:17:36 μμ] L2Spring Hi5: ?
    [20/10/2014 3:17:55 μμ] Styx -: 1-1 you create the quests?
    [20/10/2014 3:18:38 μμ] L2Spring Hi5: Yes
    [20/10/2014 3:18:53 μμ] Styx -: wow
    [20/10/2014 3:18:53 μμ] L2Spring Hi5: I make replay 10 quests.. and After I replay it and do it
    [20/10/2014 3:19:11 μμ] Styx -: shit bro is much work :P
    [20/10/2014 3:19:51 μμ] Styx -: i will need you in 5-7 days to create some daily instances for my pvp
    [20/10/2014 3:19:54 μμ] Styx -: you will can?
    [20/10/2014 3:22:25 μμ] L2Spring Hi5: I can create it :)
    [20/10/2014 3:22:46 μμ] Styx -: ok cool.
    [20/10/2014 3:22:54 μμ] L2Spring Hi5: Now I synchronizing QuestName-e.txt with our quest folder and many quests are deleted and some new
    [20/10/2014 3:23:07 μμ] Styx -: good :)
    [20/10/2014 3:23:21 μμ] Styx -: you can create like SOA in official
    [20/10/2014 3:23:23 μμ] Styx -: instance?
    [20/10/2014 3:32:37 μμ] Styx -: l2jprogressive - is l2jps this?
    [20/10/2014 3:32:58 μμ] L2Spring Hi5: No l2jprossive is my Ertheia
    [20/10/2014 3:33:10 μμ] L2Spring Hi5: But just sicky name.. :D
    [20/10/2014 3:33:15 μμ] Styx -: xD
    [20/10/2014 3:33:29 μμ] L2Spring Hi5: Its for SVN name :D
    [20/10/2014 3:33:52 μμ] L2Spring Hi5: But Real name of my Ertheia project is OverClock.. I need to remake
    [20/10/2014 3:33:55 μμ] L2Spring Hi5: rename
    [20/10/2014 3:34:10 μμ] Styx -: ok bro
    [20/10/2014 3:34:16 μμ] Styx -: what about DEBUG folder
    [20/10/2014 3:34:18 μμ] Styx -: in source?
    [20/10/2014 3:34:33 μμ] L2Spring Hi5: Its nothing..
    [20/10/2014 3:34:38 μμ] L2Spring Hi5: just for me
    [20/10/2014 3:34:48 μμ] L2Spring Hi5: You can start server from Eclipse ;)
    [20/10/2014 3:34:52 μμ] L2Spring Hi5: and not compile
    [20/10/2014 3:35:01 μμ] Styx -: lol :P
    [20/10/2014 3:35:17 μμ] Styx -: for debug?
    [20/10/2014 3:35:40 μμ] L2Spring Hi5: Yes
    [20/10/2014 3:35:48 μμ] L2Spring Hi5: Because I change core.. and not need restart
    [20/10/2014 3:36:09 μμ] Styx -: how you can run the server from eclipse ;P
    [20/10/2014 3:36:12 μμ] Styx -: strange
    [20/10/2014 3:36:16 μμ] Styx -: first time i hear it
    [20/10/2014 3:36:53 μμ] L2Spring Hi5: As Debug
    [20/10/2014 3:37:01 μμ] Styx -: ahhhh
    [20/10/2014 3:37:05 μμ] Styx -: now i understand
    [20/10/2014 3:37:07 μμ] Styx -: nice
    [20/10/2014 3:40:37 μμ] L2Spring Hi5: :)
    [20/10/2014 3:42:56 μμ] Styx -: what is the cdKey?
    [20/10/2014 3:52:34 μμ] L2Spring Hi5: nothing
    [20/10/2014 3:52:47 μμ] Styx -: okey ;)
    [20/10/2014 4:24:18 μμ] Styx -: mate check this
    [20/10/2014 4:24:32 μμ] *** Ο χρήστης Styx - έστειλε IMG_20102014_172432.png ***
    [20/10/2014 4:24:39 μμ] Styx -: free server (worry)?
    [20/10/2014 4:29:00 μμ] Styx -: He say: You are using free server  , this server only allow gm login and it will auto shutdown after one hour.
    [20/10/2014 4:31:28 μμ] Styx -: i can delete it but have anything else exept this?
    [20/10/2014 7:42:53 μμ] L2Spring Hi5: I will update :)
    [20/10/2014 7:56:10 μμ] Styx -: ok mate just i inform you
    [20/10/2014 7:56:46 μμ] Styx -: i can help you to fix the project but you must to do the fixes dont ignore it :P
    [20/10/2014 7:58:41 μμ] L2Spring Hi5: yes
    [20/10/2014 7:58:46 μμ] L2Spring Hi5: make it list.txt and send me
    [20/10/2014 7:59:33 μμ] Styx -: ok
    [20/10/2014 8:11:39 μμ] Styx -: Check how i will do it.
    [20/10/2014 8:11:48 μμ] L2Spring Hi5: ok
    [20/10/2014 8:11:49 μμ] Styx -: http://i.imgur.com/Pl1jYtm.jpg
    [21/10/2014 12:27:01 πμ] L2Spring Hi5: Do you know any skill where is used stats like dyes.. STR, MEN, INT
    [21/10/2014 12:30:13 πμ] Styx -: in ertheia?
    [21/10/2014 12:32:34 πμ] Styx -: etoimoooo
    [21/10/2014 12:32:37 πμ] Styx -: ops
    [21/10/2014 12:33:11 πμ] L2Spring Hi5: no in Hi5
    [21/10/2014 12:35:49 πμ] Styx -: hmm
    [21/10/2014 12:35:53 πμ] Styx -: let me think
    [21/10/2014 1:13:39 μμ] Styx -: I cant find nothing
    [21/10/2014 1:13:41 μμ] Styx -: what you want
    [21/10/2014 1:13:46 μμ] Styx -: maybe i can help :)
    [21/10/2014 1:29:29 μμ] Styx -: When you are here?
    [21/10/2014 1:29:33 μμ] Styx -: i want to speak you
    [21/10/2014 1:36:36 μμ] Styx -: Try to fix this 2 serious problems.
    [21/10/2014 1:36:38 μμ] Styx -: http://i.imgur.com/ezTJIjl.jpg
    [21/10/2014 1:36:48 μμ] Styx -: when i will find more i will send you
    [21/10/2014 1:37:02 μμ] Styx -: the second is very serious...
    [21/10/2014 1:37:07 μμ] Styx -: i think have wrong packets.
    [21/10/2014 2:25:37 μμ] Styx -: mate?
    [21/10/2014 2:26:23 μμ] L2Spring Hi5: yes, I saw picture
    [21/10/2014 2:26:40 μμ] Styx -: Ok good when you have news tell me to continue
    [21/10/2014 2:26:43 μμ] Styx -: with others
    [21/10/2014 2:32:53 μμ] L2Spring Hi5: ok
    [21/10/2014 2:32:58 μμ] Styx -: ;)
    [21/10/2014 3:04:42 μμ] Styx -: when you thing will be fixed?
    [21/10/2014 10:55:04 μμ] Styx -: You work it mate?
    [21/10/2014 10:55:07 μμ] Styx -: i need to know :P
    [21/10/2014 10:56:21 μμ] Styx -: prepei na psaxtoume
    [21/10/2014 10:56:22 μμ] Styx -: kai sta ksena
    [21/10/2014 10:56:24 μμ] Styx -: site
    [21/10/2014 10:56:25 μμ] Styx -: rosika
    [21/10/2014 10:56:26 μμ] Styx -: lt
    [21/10/2014 10:56:27 μμ] Styx -: ktlp
    [21/10/2014 10:56:35 μμ] Styx -: wrong
    [22/10/2014 1:47:19 μμ] Styx -: Mate can i have a answer?
    [22/10/2014 1:47:41 μμ] Styx -: If you ignore me and u bored to do the fixes , just send me back the money and close my account
    [22/10/2014 1:47:51 μμ] Styx -: because is useless without fix.
    
  5. its basic rule looOOOOL

    you expect staff to do anything or for you to get their attention if you describe the situation with only words ?

     

    everyone can talk/lie etc. Yah ,i dont like miguel either, he is scamming people for sure ,just look at the ertheia crap! 250 euro for a prepaid pack which nothing works... pure scam for dumb ppl

     

    i will add proof now.

  6. Hello ,

     

    I buy from Miguels the owner of L2jSpring the high five project all was ok when  i start to check for problem all packets was wrong everything have  from 5-10 bugs like login if you

    create char the game crash you must restart it , About quests the 40% dont work , Skills have bugs too..

     

     

    I request my money back and he dont answer me now he say "You get the source" what i can do with this crapy shit**? L2jPS is better.

     

     

    If staff dont ban him .. i want to warning people DONT BUY FROM HIM!!!

     

     

     

     

    Btw* When i report the problems to him he say "I will fix it" .... But nothing!

  7. *Im not spamer just i provide HQ servers thanks staff .
     
    Check this server is realy amazing need only people.
     
    Stable - No Lag - DDOS Protected
     
     
     
     
     
    Server Rates
    XP Rates: x5000
    SP Rates: x5000
    Enchant Rates
    Safe Enchant: +5
    Max Enchant: +16
    Normal Enchant: 75%
    Blessed Enchant: 95%(In gm shop with Farm Items)
    Crystal Enchant: 80%(Drop from custom RB and in gm shop with Vote Items)
    Features & Customs
    Auto-Learn Skills
    Balanced Classes
    Wedding System
    Clan Hall System
    No Clan Penalty
    Castle Siege System
    No Weight Penalty
    No Grade Penalty
    New character start with : 500kk adena
    Sub-Class Without Quest
    Hero System
    Duel System
    Balanced classes
    Max Subclasses 10
    Geodata, fully workingarrow-10x10.png
    Npc Buffer: (9H buff time)50 Buff slotsarrow-10x10.png
    D.Buff Sheald
    PvP Informationarrow-10x10.png
    PK Informationarrow-10x10.png
    Top PK Announce Login
    Top PVP Announce Login
    Hero Announce Login
    Raid Boss Announce
    Global Chatarrow-10x10.png: 500 PvP
    Trade Chat: 100 PvP
    PvP Rewardarrow-10x10.png: 1 PvP Items
    Augmentation System
    All Noblesse Skills
    All Hero Skills
    All Augmentation Skills
    All Raid Bosses
    Fully DDoS Protection
    Main Town in Giran
    Custom Start Zone
    Retail-Like Enchant Skills System
    C4 / C5 / Interlude Skills
    Interlude Skills 99% Working
    All C4 / C5 / Interlude Monsters
    All C4 / C5 / Interlude Locations
    Auto Flag in PvP Zone
    Auto Flag in Boss Zone
    Custom Coins:
    * Event Medals Rewardarrow-10x10.png
    * Farm Coins Rewardarrow-10x10.png
    * Vote Medals Rewardarrow-10x10.png
    * Nobblesse Coin
    * Hero Coin
    * Recoments Coin
    * Clan Coin
    * Clan Items

    Extra Edits:
    * Absolute Tattoo - 10% HP
    * Quake / Killing Spree System

    Custom Npc's:
    * Custom Buffer
    * Global Gatekeeper
    * GM Shop
    * Class Managerarrow-10x10.png
    * Weding Managerarrow-10x10.png
    * Top Players List NPC Info
    * About Server NPC Info * NPC Vote Rewardarrow-10x10.png Manager
    * Siege Manager
    * Skill Enchanter
    * Boss Manager
    * Custom Augumenter
    * Siege Manager
    * Skill Enchanter
    * Symbol Maker
    * Clan Manager
    * Clan Hall Manager
    * Whare House
    * Password Manager
    * Vote Manager

    Server Custom Command's:
    * .online
    * .menu
    * .repair

    Custom Zones:
    * Custom Farm Zones x5
    * Custom PvP Zone x1
    * Custom Boss Zone x6

    Grand Olympiad:
    * Olympiad System: Every Week
    * Olympiad start 20:00
    * Olympiad end 00:00
    • Downvote 1
  8. Im not owner !

     

     

    L2Trick Best Custom Interlude PvP
    Grand Opening Today 24.10.14 | Time 19:00 GMT +2
    Website : http://l2trick.com
    BE READY!

     

     

    Rates:
    - Chronicle - Interlude
    - XP: x5000
    - SP: x5000
    - PartyXp: x1
    - PartySp: x1

    Custom Items:

    - Dynasty Weapons
    - Dynasty Armors
    - Custom Tattoo


    Enchant Rates:

    - Safe Enchant +3
    - Weapon Max Enchant: +10 - With Crystal +16
    - Armor Max Enchant: +10 - With Crystal +16
    - Jewels Max Enchant: +10 - With Crystal +16


    Augmentations Rates:

    - *Stuck Augment Skills*

    - Mid Grade Life Stone 8%
    - High Grade Life Stone 15%
    - Top Grade Life Stone 20%


    Custom Voice Commands:

    - .online
    - .panel
    - .control

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock