
Madboy
Members-
Posts
611 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Madboy
-
True ,, because people will try to scam you. I am not sure .. i know is good but i think he is not the "best dev" from here.
-
I have a question for people ho play on official server. For example when you have a bow +10+att and if you want to add SA at blacksmith ,when you add SA your encheant lvl and att. is deleted from weapon ?
-
Awesome girls, what i can say more. Nice share ...
-
gg... About you share is nice but no perfect. you need to practice whit photoshop.
-
look nice. Great job . we have now a new black set.:D About 1 gold set? what do you say?
-
Hello. Nice server i will play here. This no is old l2light server?
-
[Share]Max lvl 100 On Gracia Final(NO VISUAL BUG)
Madboy replied to Madboy's topic in Server Shares & Files [L2J]
no work? work you don't know how to add..... and TouchOfFlames how no work? i make this on l2j gracia final. -
[Gracia Epilogue] New L2j Project
Madboy replied to Mons7er's topic in Server Development Discussion [L2J]
me to when was whit gold circlet,silver circlet..(whit hight atak speed) world of arcadia that server whit 15x? i will give a try Edit: why i can;t complile? -
[Share] Java build InDev Team (24.05.2010)
Madboy replied to capaji's topic in Server Development Discussion [L2J]
yes sure Intrepid™ .. About my question. where i can set the encheant rate and max players ?? -
[Share] Java build InDev Team (24.05.2010)
Madboy replied to capaji's topic in Server Development Discussion [L2J]
Nice pack but you can share the source? -
if i set 0 all encheant go to 0?
-
Is Gracia epilogue l2jserver
-
Devangell™ omg you can share that? i really want that.
-
Hi all Can some one tell me how i can make when a player whit encheanted items go on oly all items go to 0 ? can some one give me the code or something?
-
L2Onix Informations: Rates : 1000x 1000x 500x Subclass : without Quest Noblesse : Custom Quest in Shop Dual Box allowed Global GK NPC Top PK/PVP Team vs Team Event Death Match Event Vitality System with Retail Formula. Skills +80 Skills certification Full Anti-Hack System Hero and Olympiads Castles & Clan Hall & Fortress Fully working Improved pets Attribute system Attribute skills enchant GmShop Full Items : S80/S84 in GM Shop Enchant rates - 70% | Bless Enchant Rate - 95% Enchant safe - +3, FullBody +4, Maximum +20 Subclass level 85 Hero - Changes every week Skills - Working gracia skills (some of them are still fixing) Uptime - 24/7 (unless an error occures) No wipes unless it's realy needed Daily updates Daily events Friendly Administration, always there to help you Our custom security system which prevents malicious software being used And much more... Custom Addons: Olympiad Anti-Feeding Protection. Offline Trade. Set your private store and click "Exit". Wedding Event. Modifications: Weight Limit: x2 Auto Loot (Auto Pickup). Box limitation currently to 2 boxes. Version: Client version - Gracia Epilogue (CT2.3) Hardware Informations * Intel® Core. i7-920 Quadcore incl. Hyper-Threading Technology * 12 GB DDR3 RAM * Hard discs 2 x 500 GB SATA-II HDD (Software-RAID 1) * 1Gbit Uplink Public Connection * Centos 5.4 (64 bit) WebSite: http://l2-onix.com
-
[Discussion]Archid C4 Full Retail for free?
Madboy replied to Setekh's topic in Server Development Discussion [L2J]
Yes for free but first finish the interlude ... -
Try this ... go in game //admin>>> Items and try 3477,3478(Bronz ) 3493,3496(Silver ) 3481,3487 (gold)
-
yes because dynasty armors for interlude don't have any passive skill you need to make.. You need to make: (server part) A new xml file for skil and on navicat in armorset column you need to add item set parts and skill id. (Client sided)and you need to create on skillgrp.dat a new line whit skill id and icon.
-
yes this is a nice video but he/she play whit cheats...
-
I use BiggBoss pvpcolor system ... this is colornamemanager +/* + * 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.appearance; + +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.util.Set; + +import com.l2jserver.L2DatabaseFactory; + +import javolution.util.FastMap; + +/** + * @author BiggBoss + */ +public class ColorNameManager +{ + private static FastMap<Integer, String> _pvpColor = new FastMap<Integer, String>(); + private static FastMap<Integer, String> _pkColor = new FastMap<Integer, String>(); + + private ColorNameManager() + { + } + + public static ColorNameManager getInstance() + { + return SingletonHolder._cne; + } + + /** + * Will load all pvp count with their respective color at server start up + * Also will set up the higher pvp/pk count rank for future purposes + */ + public void loadValues() + { + Connection con = null; + try + { + _pvpColor.put(0, "FFFFFF"); + _pkColor.put(0, "FFFFFF"); + con = L2DatabaseFactory.getInstance().getConnection(); + PreparedStatement pvpStatement = con.prepareStatement("SELECT * FROM pvp_color_nick WHERE type = ?"); + pvpStatement.setString(1, "pvp"); + + ResultSet pvpRset = pvpStatement.executeQuery(); + while(pvpRset.next()) + { + _pvpColor.put(pvpRset.getInt("pvppk_count"), pvpRset.getString("color")); + } + pvpRset.close(); + pvpStatement.close(); + + PreparedStatement pkStatement = con.prepareStatement("SELECT * FROM pvp_color_nick WHERE type = ?"); + pkStatement.setString(1, "pk"); + + ResultSet pkRset = pkStatement.executeQuery(); + while(pkRset.next()) + { + _pkColor.put(pkRset.getInt("pvppk_count"), pkRset.getString("color")); + } + pkRset.close(); + pkStatement.close(); + } + catch(SQLException sqle) + { + sqle.printStackTrace(); + } + System.out.println("ColorNameManager: Loaded " + _pvpColor.size() + " colors for pvp kills!"); + System.out.println("ColorNameManager: Loaded " + _pkColor.size() + " colors for pk kills!"); + } + + /** + * Returns a string-representative with the color of the rank + * @param kills + * @param forPvp + * @return a String containing the Hexadecimal color + */ + public String getColor(int kills, boolean forPvp) + { + String color = ""; + if(forPvp) + color = _pvpColor.get(getValueBefore(kills, _pvpColor.keySet())); + else + color = _pkColor.get(getValueBefore(kills, _pkColor.keySet())); + + return color; + } + + /** + * Will return the value just before the given value contained + * in the provided Set of integers + * @param value + * @param set + * @return the value just before the provided one + */ + private static int getValueBefore(int value, Set<Integer> set) + { + int counter = 0; + for(int i : set) + { + if(i > counter && value > i) + counter = i; + } + return counter; + } + + static class SingletonHolder + { + static ColorNameManager _cne = new ColorNameManager(); + } +} what i need to do?
-
can someone tell me how i can fix this? ss:
-
[Share] Chronicle 1 interface for Interlude
Madboy replied to smeli's topic in Client Development Discussion
Nice interface.. but my question is.. have the same bug like others interfaces? whit augument? -
Share L2OFF Interlude Custom Files.
Madboy replied to Hazel's topic in Server Development Discussion [L2OFF]
question. if i want to add tvt what i need to edit or ,,,