-
Posts
130 -
Credits
0 -
Joined
-
Last visited
-
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Zacapa
-
He's the biggest scammer and the noobiest "dev" on mxc for sure and it's confirmed from 100kk members here.
-
New Interlude L2 Server
Zacapa replied to manossergakis's question in Request Server Development Help [L2J]
http://www.maxcheaters.com/topic/90626-%CF%80%CF%89%CF%82-%CE%B1%CE%BD%CE%BF%CE%AF%CE%B3%CE%BF%CF%85%CE%BC%CE%B5-%CE%AD%CE%BD%CE%B1%CE%BD-l2-interlude-server-compiled/ https://l2topzone.com/forum/l2-guides/6/guidehow-setup-l2server-images/44/ https://www.youtube.com/results?search_query=l2+how+to+make+server -
Multiple Services For L2Off Developers!
Zacapa replied to Blackhive's topic in Marketplace [L2Packs & Files]
Nice guy i accidentally pressed -1 reputation instead of +1..... sorry -
Code Multi Shop [Services/donate Npc] + Vip System
Zacapa replied to 'Baggos''s topic in Server Shares & Files [L2J]
-
Source Project L2Jwz - Second Generation
Zacapa replied to Belial's topic in Server Shares & Files [L2J]
You have put wrong db on configs. -
http://www.maxcheaters.com/topic/146737-l2j-developer-services-fixes/
-
How Much Upload Per Player ?
Zacapa replied to DontKnow's question in Request Server Development Help [L2J]
http://www.maxcheaters.com/topic/214925-server-host-underground/?do=findComment&comment=2636238 -
Help Pou Vriskete?
Zacapa replied to zakon1992's question in Request Server Development Help [Greek]
H enterworld.java h servernews.htm h apo client systemmsg bori nane kai apo ta config checare kai afta den thimame pos ine sto frozen -
Discussion Server Host ( Underground )
Zacapa replied to THeMaxPoweR's topic in Server Development Discussion [L2J]
I think its 20-40kbit/s per player you can handle more than 1k players with 100 Mbit/s -
Don't trust him i setup him ubuntu 14.04 vps everything was working fine everything and when i finished he told me now i want windows vps..
-
Kai afto me ta 7 evro pistevo ine poli gia esena afth th stigmi. Telos padon na se voithiso thelo na mhn peta3is ta lefta sou etsi xoris logo
-
Help Costum Npc Skills
Zacapa replied to zakon1992's question in Request Server Development Help [Greek]
http://www.maxcheaters.com/topic/214697-multi-shop-servicesdonate-npc-vip-system/ -
Yes some things are from caparsos system but there are some changes inside. Anyway i found it on my pack and i said why not to share it. You're right about l2walker i will fix the pastebin.
-
I've tested this captcha on live server and i hadn't any problem with boting. I think on Caparso system the images are the same everytime and its too easy to bypass it.
-
Share this captcha for acis 367. Its with random letters. You can test it and post here for any problems! (The main code its from Caparso share with some changes) Pastebin: https://pastebin.com/R1YEwSPW
-
Discussion Help Installing A Website
Zacapa replied to TEOGR_hItMaKeR's topic in Website Templates & Themes (Free)
on user on Host put only % and try again -
Discussion Help Installing A Website
Zacapa replied to TEOGR_hItMaKeR's topic in Website Templates & Themes (Free)
Everytime you want someone to fix you something for free..... you can search and fix it alone http://www.maxcheaters.com/topic/214185-how-to-connect-site-with-server/ and this site as i remember has some problems that need to be fixed. -
Afto me ta 7 evro ine mia xara... kai bori na krathsh giro sta 200 atoma
-
XAXAXAXAXAXA XAAAAAAAAAA That funny guy......
-
You can try something like that i havent test it and its for acis --- java/net/sf/l2j/gameserver/network/clientpackets/RequestBypassToServer.java (revision 10) +++ java/net/sf/l2j/gameserver/network/clientpackets/RequestBypassToServer.java (working copy) @@ -20,8 +20,10 @@ import net.sf.l2j.Config; import net.sf.l2j.gameserver.communitybbs.CommunityBoard; import net.sf.l2j.gameserver.datatables.AdminCommandAccessRights; +import net.sf.l2j.gameserver.datatables.SkillTable; import net.sf.l2j.gameserver.handler.AdminCommandHandler; import net.sf.l2j.gameserver.handler.IAdminCommandHandler; +import net.sf.l2j.gameserver.handler.itemhandlers.GuideItem; import net.sf.l2j.gameserver.model.L2Object; import net.sf.l2j.gameserver.model.L2World; import net.sf.l2j.gameserver.model.actor.L2Npc; @@ -90,6 +92,14 @@ ach.useAdminCommand(_command, activeChar); } + else if (_command.startsWith("GuideCommand")) + { + GuideItem.sendHtml(activeChar); + } + else if (_command.startsWith("player_help ")) { playerHelp(activeChar, _command.substring(12)); Index: java/net/sf/l2j/gameserver/handler/ItemHandler.java =================================================================== --- java/net/sf/l2j/gameserver/handler/ItemHandler.java (revision 10) +++ java/net/sf/l2j/gameserver/handler/ItemHandler.java (working copy) @@ -22,6 +22,7 @@ import net.sf.l2j.gameserver.handler.itemhandlers.BeastSpiritShot; import net.sf.l2j.gameserver.handler.itemhandlers.BlessedSpiritShot; import net.sf.l2j.gameserver.handler.itemhandlers.Book; +import net.sf.l2j.gameserver.handler.itemhandlers.GuideItem; import net.sf.l2j.gameserver.handler.itemhandlers.Calculator; import net.sf.l2j.gameserver.handler.itemhandlers.Elixir; import net.sf.l2j.gameserver.handler.itemhandlers.EnchantScrolls; @@ -60,6 +61,7 @@ registerItemHandler(new BeastSpice()); registerItemHandler(new BeastSpiritShot()); registerItemHandler(new BlessedSpiritShot()); + registerItemHandler(new GuideItem()); registerItemHandler(new Book()); registerItemHandler(new Calculator()); registerItemHandler(new Elixir()); Index: java/net/sf/l2j/gameserver/handler/itemhandlers/GuideItem.java =================================================================== --- java/net/sf/l2j/gameserver/handler/itemhandlers/GuideItem.java (revision 0) +++ java/net/sf/l2j/gameserver/handler/itemhandlers/GuideItem.java (working copy) @@ -0,0 +1,31 @@ +package net.sf.l2j.gameserver.handler.itemhandlers; + +import net.sf.l2j.gameserver.handler.IItemHandler; +import net.sf.l2j.gameserver.model.actor.L2Playable; +import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; +import net.sf.l2j.gameserver.model.item.instance.ItemInstance; +import net.sf.l2j.gameserver.model.zone.ZoneId; +import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage; + +public class GuideItem implements IItemHandler +{ + @Override + public void useItem(L2Playable playable, ItemInstance item, boolean forceUse) + { + if (!(playable instanceof L2PcInstance)) + return; + + final L2PcInstance player = (L2PcInstance) playable; + + sendHtml(player); + } + public static boolean check(L2PcInstance p) + { + return p.isInsideZone(ZoneId.PEACE) && !p.isInCombat() && !p.isInOlympiadMode() && !p.isDead(); + } + public static void sendHtml(L2PcInstance player){ + NpcHtmlMessage html = new NpcHtmlMessage(0); + html.setFile("data/html/mods/guide/guideitem.htm"); + player.sendPacket(html); + } +} On item you need to set this <set name="handler" val="GuideItem" />
-
LF Grandbossstatus Acis
Zacapa replied to TEOGR_hItMaKeR's question in Request Server Development Help [L2J]
Ofc it will work with a little adapt for your rev its nothing special... -
LF Lf Guide How To Setup Acount Manager
Zacapa replied to DLDL's question in Request Server Development Help [L2J]
is it that hard to search? http://www.maxcheaters.com/topic/214185-how-to-connect-site-with-server/ -
LF Grandbossstatus Acis
Zacapa replied to TEOGR_hItMaKeR's question in Request Server Development Help [L2J]
http://www.maxcheaters.com/topic/191414-raidboss-status-manager-acis/ http://www.maxcheaters.com/topic/176238-raidboss-status-alive-dead-core-npc/ ............. -
Request Custom Currency Private Store
Zacapa replied to TEOGR_hItMaKeR's question in Request Server Development Help [L2J]
There isn't any errors i adapt it but i didn't save it... -
His prices are ok (he gets 10 euros per hour) and he is really good best dev i've met here. The only problem is that you cannot communicate with him that easy... i think that he speaks bulgarian.