Jump to content

shawshaw

Members
  • Posts

    108
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by shawshaw

  1. DXT1 No Alpha is the way and with mip maps... solved :)
  2. Howdy lads... I made a custom icon which is working fine ofc.. My problem is, when i drag it, it has a mess up look (image below) Now I've tried with and w/out mip maps, but it doesn't make any difference... Any help would surely appreciated...
  3. Howdy! I'm wondering if anyone can help me with the deathmacth event reward... I wanted to make 3 winners like 1st, 2nd and 3rd.. I've been trying to make it work but unfortunately it didn't work at all.. I'm using l2jfrozen source. Below is the code for the deathmatch... Thank you in advance... I'm not a professional java dev, and my capabilities are limited, so a handful help from pro dev's would be great... DeathMatch Event
  4. solved.. a thousand thanks to yah meng. cheers. :)
  5. Im going directly to my point.. i made a custom image for the client, but with "lower details" this is how the image looks like @lower details and if i set the client graphics to high, then the image just look so fine @higher details well i saw from l2impulse source which is shared in this forum, either the client graphic is set to lower or higher details, the image will just stay the same (high quality).. im just practicing with this thing so i wanna know where did i go wrong, do i made mistake while saving the image on photoshop? or in unreal? if anyone know how, would be great if you share.. .. cheers :) From l2impulse image @high details or low details <----- made by professional ofc :)
  6. make sure you copied the spaces too... check the ss 8)
  7. http://maxcheaters.com/forum/index.php?topic=83421.msg640541#msg640541
  8. you pissed me off nigga.. There's a lot more stupid post compare to mine for you to react , and you came here just like dropping a damn nuclear bomb from US to PHIL.
  9. @wyatt hey meng, use your arrogance to your enemies, not to me, because i did nothing to you,and i don't have against with you, if you have problem with this post, then you have the right to stfu and stop spamming.. make your own script and share it nigga... Ohh and one last thing, make your own chaotic zone,then share it to someone,so the world would not look so stupid if someone "EVER" buy this script.. ohh yeahh, never did much work with it, just messing up some pussy inside l2pcinstance... and ,l,
  10. did you guys even noticed who made that? i made that one, and it's not the original chaotic zone, as the title says on that share "Chaotic Zone Different version".. that share will only make players auto flag and auto revive plus random spawn, what i am trying to sell is the popular,old school,original chaotic zone,actually this zone can be seen in lots of l2off private server, but never been shared.
  11. really? give me the link, if it's already shared.
  12. Zone name: Chaotic Zone Information: 1:players can attack,use any skills (offensive or deffensive) without holding CTRL 2:you can directly pvp/pk someone 3:random spawn inside that zone after clicking "to village" button.. 4:default zone is primeval island 5:players with karma don't drop inside chaotic zone ========================= admin aio buffer -set a character into an aio buffer in-game -full aio buffer skill (can be modified) -no 3rd party programs just like the 1 that has been shared here in mxc -just an admin command,1 click aio buffer right away send a pm and give me your offer.. price is negotiable.. to all haters ==== /care :) EDIT: i shared a chaotic zone here in mxc, but that was a different one, and read the infos very carefully and try to understand what's the difference and try to compare it,from this proposal to that zone i already shared. ciao :P
  13. can anyone help how to edit the ExSetCompassZoneCode? check the ss, on the screen it says "altered zone" how can i change that to something i want (example: "Chaotic Zone")? thanks in advance..
  14. then ask your ally to leave their clan and join your clan for the siege.
  15. type command .res to resurrect your self... :)) and don't forget to change the item needed for .res
  16. as long as you can still attack even without flag status, then nothing to worry or to fix..
  17. well that could be client part problem.. but in that case, you can still attack the player even tho if the char's name is not pink?.. and try to port to town and port back to the pvp zone,maybe that could make a difference.. :D
  18. try this meng.. /* * 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.zone.type; import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.model.actor.L2Character; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.zone.L2SpawnZone; import com.l2jserver.util.Rnd; /** * An Custom PvP Zone * * @author NeverMore */ public class L2CustomPvP extends L2SpawnZone { //Ramdom Locations configs private static int[] _x = {11551, 10999, 10401}; private static int[] _y = {-24264, -23576, -24030}; private static int[] _z = {-3644, -3651, -3660 }; public L2CustomPvP(int id) { super(5555); } protected void onEnter(L2Character character) { character.setInsideZone(L2Character.ZONE_PVP, true); character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, true); if (character instanceof L2PcInstance) { ((L2PcInstance) character).sendMessage("You enter a PvP Area"); ((L2PcInstance) character).setPvpFlag(1); } } protected void onExit(L2Character character) { character.setInsideZone(L2Character.ZONE_PVP, false); character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, false); if (character instanceof L2PcInstance) { ((L2PcInstance) character).stopNoblesseBlessing(null); ((L2PcInstance) character).setPvpFlag(0); ((L2PcInstance) character).sendMessage("You exit from a PvP Area"); } } static class BackToPvp implements Runnable { private L2Character _activeChar; BackToPvp(L2Character character) { _activeChar = character; } @Override public void run() { int r = Rnd.get(3); _activeChar.teleToLocation(_x[r] , _y[r], _z[r]); } } public void onDieInside(L2Character character) { if (character instanceof L2PcInstance) { } } public void onReviveInside(L2Character character) { ThreadPoolManager.getInstance().scheduleGeneral(new BackToPvp(character), 500); ((L2PcInstance) character).isNoblesseBlessed(); } }
  19. Hey update these lines: From this: public static boolean ENABLE_CUSTOM_SPAWNX; To this: public static boolean ENABLE_CUSTOM_FARM; This one too,from: ENABLE_CUSTOM_SPAWNX = Boolean.valueOf(L2JModSettings.getProperty("AllowCustomFarm", "False")); To this: ENABLE_CUSTOM_FARM = Boolean.valueOf(L2JModSettings.getProperty("AllowCustomFarm", "False")); oh btw, just ignore "L2JModSettings" , because on my own i added this config to l2jmods. ciao.
  20. since it is a pvp zone, i guess player cannot gain pvp points.. That's why i removed this line character.setInsideZone(L2Character.ZONE_PVP, true);
  21. can you make this event auto? and random spawn every time a player have been killed?
  22. example: import sys from com.l2jserver.gameserver.model.actor.instance import L2PcInstance from java.util import Iterator from com.l2jserver.gameserver.datatables import SkillTable from com.l2jserver import L2DatabaseFactory from com.l2jserver.gameserver.model.quest import State from com.l2jserver.gameserver.model.quest import QuestState from com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest
  23. did you added name_color in your character table? if not, then add it..
×
×
  • Create New...