-
Posts
1,041 -
Joined
-
Last visited
-
Days Won
21 -
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by S-T-I-N-K-Y
-
Hello guys, nothing special, just a guy ask me for that and maybe more peoples looking for it. You select enchant aura for all weapons on character selection. Diff Created on aCis 378: Index: config/server.properties =================================================================== --- config/server.properties (revision 9) +++ config/server.properties (working copy) @@ -59,6 +59,10 @@ # Clients related options # ================================================================ +# Visual Enchant for weapons on character selection +# Disable : 0 +VisualEnchant = 16 + # Allow delete chars after D days, 0 = feature disabled. DeleteCharAfterDays = 7 Index: java/net/sf/l2j/Config.java =================================================================== --- java/net/sf/l2j/Config.java (revision 9) +++ java/net/sf/l2j/Config.java (working copy) @@ -497,6 +497,7 @@ public static boolean SERVER_GMONLY; /** clients related */ + public static int VISUAL_ENCHANT; public static int DELETE_DAYS; public static int MAXIMUM_ONLINE_USERS; @@ -1210,6 +1211,7 @@ SERVER_LIST_TESTSERVER = server.getProperty("TestServer", false); SERVER_LIST_PVPSERVER = server.getProperty("PvpServer", true); + VISUAL_ENCHANT = server.getProperty("VisualEnchant", 0); DELETE_DAYS = server.getProperty("DeleteCharAfterDays", 7); MAXIMUM_ONLINE_USERS = server.getProperty("MaximumOnlineUsers", 100); Index: java/net/sf/l2j/gameserver/network/serverpackets/CharSelectInfo.java =================================================================== --- java/net/sf/l2j/gameserver/network/serverpackets/CharSelectInfo.java (revision 9) +++ java/net/sf/l2j/gameserver/network/serverpackets/CharSelectInfo.java (working copy) @@ -6,6 +6,7 @@ import java.util.ArrayList; import java.util.List; +import net.sf.l2j.Config; import net.sf.l2j.L2DatabaseFactory; import net.sf.l2j.gameserver.data.sql.ClanTable; import net.sf.l2j.gameserver.model.CharSelectSlot; @@ -149,7 +150,7 @@ writeD((slot.getAccessLevel() > -1) ? ((slot.getDeleteTimer() > 0) ? (int) ((slot.getDeleteTimer() - System.currentTimeMillis()) / 1000) : 0) : -1); writeD(slot.getClassId()); writeD((i == _activeId) ? 0x01 : 0x00); - writeC(Math.min(127, slot.getEnchantEffect())); + writeC(Config.VISUAL_ENCHANT > 0 ? Config.VISUAL_ENCHANT : Math.min(127, slot.getEnchantEffect())); writeD(slot.getAugmentationId()); } getClient().setCharSelectSlot(_slots);
-
Help Tattoos disabled or dropped off for the pvp and pk
S-T-I-N-K-Y replied to waqwaq's question in Request Server Development Help [L2J]
Follow the karma system when items dropped and add lines like: if (itemId == X) continue; -
Discussion Official Stun in C4-Il-Freya-H5
S-T-I-N-K-Y replied to Kara's topic in Server Development Discussion [L2J]
He could if he knew. -
Code Automatic Random Zone Changer
S-T-I-N-K-Y replied to S-T-I-N-K-Y's topic in Server Shares & Files [L2J]
Give a close view on your RandomZone.xml you did something wrong there. -
Help Mattack/Magic damage.
S-T-I-N-K-Y replied to sotid's question in Request Server Development Help [L2J]
You really want to "deal" with Frozen formulas? xD -
LF Java experienced developer
S-T-I-N-K-Y replied to MTJ's question in Request Server Development Help [L2J]
Give to public more info, what client - what pack - what job. -
Help Enemy Player HP MP Bar
S-T-I-N-K-Y replied to sqhizein's question in Request Server Development Help [L2J]
Hmm by edit interface.u you can take only current HP of another PC target. But i think with core side that data can been send on interface. -
Help Enemy Player HP MP Bar
S-T-I-N-K-Y replied to sqhizein's question in Request Server Development Help [L2J]
-
Help Enemy Player HP MP Bar
S-T-I-N-K-Y replied to sqhizein's question in Request Server Development Help [L2J]
Where is the hard part ? http://prntscr.com/m2hnm1 -
Help Server cache?Oo
S-T-I-N-K-Y replied to dodelez's question in Request Server Development Help [L2J]
When you change something inside source you have to replace the .jar on the libs to see the changes, not reload. -
Help Enemy Player HP MP Bar
S-T-I-N-K-Y replied to sqhizein's question in Request Server Development Help [L2J]
Rolf, its like few lines inside interface.xdat / interface.u / core.game.serverpackage (maybe) Why no mana bar? When you target yourself there is already an mana bar xD Stop hunting easy money.. -
Code Updated
-
Hello chaters, with currect code you can setup and event with spawning raidbosses on specific times. Code : Here Credits : StinkyMadness
-
Nice one +1
-
I think it's Interlude aCis... what you add/edit on : data\xml\stats\armor\8055-8067.xml ?
-
People please learn to ask for help, what kind of question is this? Tell us the client.. tell us the source name.. Show us the problem, show us the error, show us the console, Show us the code... There are people who are bored to answer on question with the all that info's from above and you want to find help with 0 info? next time write only : "Help"
-
Stamatiste re na doulevete to paidi :) apla den nomizw na xrisimopioi polu to forum kai zithse sto FB to help gia "Live Chat". An kai poios 8elei na di3ei to facebook tou public se MxC member? xD Pantos autounou gia to email tou to eipa kai egw :P ontws 8eloun kapoia voh8ia ta paidia, alla den 3eroun oti einai 2018-2019 kai o kosmos variete na kanei comment oxi na bei email kai facebook.
-
Hello forum, i was searching around and i saw on many forum's peoples selling this code for gold. (30-40 euro) rolf... That's who we are, sad... So this is one "Gift" from me for the new year. On this code you have the listed options: You can add as many zones you want. You can setup for each zone the running time. (On the current diff i have use Giran Arena and Gludin Arena). Gatekeeper command : <a action="bypass -h npc_%objectId%_pvp">Random Zone</a> The codes required more then 1 zone. Ofc you can add your own configs like "Auto Flag" "Auto Nobles" and whatever you want.. take this share like platform and work on it. DIFF is coded on aCis 381 revision - Feel free to adapt it in whatever revision or project you need. Credits : StinkyMadness Code r381: Here
- 40 replies
-
- 11
-
-
-
-
Tool Enchant Npc For Acis [Interlude]
S-T-I-N-K-Y replied to Katherine's topic in Server Shares & Files [L2J]
Old but gold :D -
LF Lf java programmer
S-T-I-N-K-Y replied to L2Immortal PvP's question in Request Server Development Help [L2J]
Who will send you email for an unknown problem and unknown client and unknown source and unknown... but first who will send email? xD -
Help Cant use apella armor
S-T-I-N-K-Y replied to amymix19's question in Request Server Development Help [L2J]
You still keeping secret the Pack you use, how we can help you then ? it's like you say to doctor "i'm in pain" and you let him guess the body part. -
Help Cant use apella armor
S-T-I-N-K-Y replied to amymix19's question in Request Server Development Help [L2J]
Thanks for the question, we will guess the pack and the client ;)
