Jump to content
  • 0

Question

Posted

1. ERROR in \PartyTeleporter.java <at line 74>

                For,L2Character character : zone.getCharactersInside<>.Values<>>

                                                                                                            ^^^^

The method values<> is undefined for the tybe L2tintObjectHashMap<L2Character>

----------

2. ERROR in \PartyTeleporter.java <at line 89>

                For,L2Character character : zone.getCharactersInside<>.Values<>>

----------

The method values<> is undefined for the tybe L2tintObjectHashMap<L2Character>

Recommended Posts

  • 0
Posted

  [javac] C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\java\com\l2jserver\gameserver\model\zone\L2ZoneType.java:482: error: illegal start of expression

    [javac] public FastMap<Integer, L2Character> getCharactersInside()

    [javac] ^

    [javac] C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\java\com\l2jserver\gameserver\model\zone\L2ZoneType.java:482: error: ';' expected

    [javac] public FastMap<Integer, L2Character> getCharactersInside()

    [javac]                                                         ^

    [javac] C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\java\com\l2jserver\gameserver\model\zone\L2ZoneType.java:486: error: reached end of file while parsing

    [javac] }

    [javac] ^

    [javac] 3 errors

 

  • 0
Posted

Lock how i add the line.

 

 

public void visualizeZone(int z)

{

getZone().visualizeZone(z);

}

{

public FastMap<Integer, L2Character> getCharactersInside()

{

return _characterList;

}

}

  • 0
Posted
  public void visualizeZone(int z)

  {

      getZone().visualizeZone(z);

  }

 

      public FastMap<Integer, L2Character> getCharactersInside()

        {

            return _characterList;

        }

 

 

Try make it like that

  • 0
Posted

 

 

Try make it like that

 

javac] Compiling 1629 source files to C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\build\classes

    [javac] C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\java\com\l2jserver\gameserver\model\zone\L2ZoneType.java:485: error: reached end of file while parsing

    [javac]         }

    [javac]           ^

    [javac] 1 error

 

BUILD FAILED

C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\build.xml:59: Compile failed; see the compiler error output for details.

 

 

If i put like this >>            public FastMap<Integer, L2Character> getCharactersInside()

        {

            return _characterList;

    }

    }

 

He give me the error

 

  [javac] Compiling 1629 source files to C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\build\classes

    [javac] C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\java\com\l2jserver\gameserver\model\zone\L2ZoneType.java:482: error: method getCharactersInside() is already defined in class L2ZoneType

    [javac]       public FastMap<Integer, L2Character> getCharactersInside()

    [javac]                                           ^

    [javac] C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\java\com\l2jserver\gameserver\model\zone\L2ZoneType.java:484: error: incompatible types

    [javac]             return _characterList;

    [javac]                   ^

    [javac]  required: FastMap<Integer,L2Character>

    [javac]  found:    L2TIntObjectHashMap<L2Character>

    [javac] 2 errors

 

BUILD FAILED

C:\Documents and Settings\Administrator\Desktop\WorckSpace\l2j-high-five\trunk\L2J_Server_High_Five\build.xml:59: Compile failed; see the compiler error output for details.

  • 0
Posted

Show me the whole part of this code.

/*

* 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;

 

import gnu.trove.TObjectProcedure;

 

import java.util.Map;

import java.util.logging.Logger;

 

import javolution.util.FastList;

import javolution.util.FastMap;

 

import com.l2jserver.gameserver.model.L2Object;

import com.l2jserver.gameserver.model.L2Object.InstanceType;

import com.l2jserver.gameserver.model.actor.L2Character;

import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

import com.l2jserver.gameserver.model.quest.Quest;

import com.l2jserver.gameserver.network.serverpackets.L2GameServerPacket;

import com.l2jserver.gameserver.util.L2TIntObjectHashMap;

 

/**

* Abstract base class for any zone type

* Handles basic operations

*

* @author  durgus

*/

public abstract class L2ZoneType

{

protected static final Logger _log = Logger.getLogger(L2ZoneType.class.getName());

 

private final int _id;

protected L2ZoneForm _zone;

protected L2TIntObjectHashMap<L2Character> _characterList;

 

/** Parameters to affect specific characters */

private boolean _checkAffected = false;

 

private String _name = null;

private int _minLvl;

private int _maxLvl;

private int[] _race;

private int[] _class;

private char _classType;

private Map<Quest.QuestEventType, FastList<Quest>> _questEvents;

private InstanceType _target = InstanceType.L2Character; // default all chars

 

protected L2ZoneType(int id)

{

_id = id;

_characterList = new L2TIntObjectHashMap<L2Character>();

 

_minLvl = 0;

_maxLvl = 0xFF;

 

_classType = 0;

 

_race = null;

_class = null;

}

 

/**

* @return Returns the id.

*/

public int getId()

{

return _id;

}

 

/**

* Setup new parameters for this zone

* @param type

* @param value

*/

public void setParameter(String name, String value)

{

_checkAffected = true;

 

// Zone name

if (name.equals("name"))

{

_name = value;

}

// Minimum level

else if (name.equals("affectedLvlMin"))

{

_minLvl = Integer.parseInt(value);

}

// Maximum level

else if (name.equals("affectedLvlMax"))

{

_maxLvl = Integer.parseInt(value);

}

// Affected Races

else if (name.equals("affectedRace"))

{

// Create a new array holding the affected race

if (_race == null)

{

_race = new int[1];

_race[0] = Integer.parseInt(value);

}

else

{

int[] temp = new int[_race.length + 1];

 

int i = 0;

for (; i < _race.length; i++)

temp = _race;

 

temp = Integer.parseInt(value);

 

_race = temp;

}

}

// Affected classes

else if (name.equals("affectedClassId"))

{

// Create a new array holding the affected classIds

if (_class == null)

{

_class = new int[1];

_class[0] = Integer.parseInt(value);

}

else

{

int[] temp = new int[_class.length + 1];

 

int i = 0;

for (; i < _class.length; i++)

temp = _class;

 

temp = Integer.parseInt(value);

 

_class = temp;

}

}

// Affected class type

else if (name.equals("affectedClassType"))

{

if (value.equals("Fighter"))

{

_classType = 1;

}

else

{

_classType = 2;

}

}

else if (name.equals("targetClass"))

{

_target = Enum.valueOf(InstanceType.class, value);

}

else

_log.info(getClass().getSimpleName()+": Unknown parameter - "+name+" in zone: "+getId());

}

 

/**

* Checks if the given character is affected by this zone

* @param character

* @return

*/

private boolean isAffected(L2Character character)

{

// Check lvl

if (character.getLevel() < _minLvl || character.getLevel() > _maxLvl)

return false;

 

// check obj class

if (!character.isInstanceType(_target))

return false;

 

if (character instanceof L2PcInstance)

{

// Check class type

if (_classType != 0)

{

if (((L2PcInstance) character).isMageClass())

{

if (_classType == 1)

return false;

}

else if (_classType == 2)

return false;

}

 

// Check race

if (_race != null)

{

boolean ok = false;

 

for (int i = 0; i < _race.length; i++)

{

if (((L2PcInstance) character).getRace().ordinal() == _race)

{

ok = true;

break;

}

}

 

if (!ok)

return false;

}

 

// Check class

if (_class != null)

{

boolean ok = false;

 

for (int i = 0; i < _class.length; i++)

{

if (((L2PcInstance) character).getClassId().ordinal() == _class)

{

ok = true;

break;

}

}

 

if (!ok)

return false;

}

}

return true;

}

 

/**

* Set the zone for this L2ZoneType Instance

* @param zone

*/

public void setZone(L2ZoneForm zone)

{

if (_zone != null)

throw new IllegalStateException("Zone already set");

_zone = zone;

}

 

/**

* Returns this zones zone form

* @param zone

* @return

*/

public L2ZoneForm getZone()

{

return _zone;

}

 

/**

* Set the zone name.

* @param name

*/

public void setName(String name)

{

_name = name;

}

 

/**

* Returns zone name

* @return

*/

public String getName()

{

return _name;

}

 

/**

* Checks if the given coordinates are within zone's plane

* @param x

* @param y

*/

public boolean isInsideZone(int x, int y)

{

return _zone.isInsideZone(x, y, _zone.getHighZ());

}

 

/**

* Checks if the given coordinates are within the zone

* @param x

* @param y

* @param z

*/

public boolean isInsideZone(int x, int y, int z)

{

return _zone.isInsideZone(x, y, z);

}

 

/**

* Checks if the given object is inside the zone.

*

* @param object

*/

public boolean isInsideZone(L2Object object)

{

return isInsideZone(object.getX(), object.getY(), object.getZ());

}

 

public double getDistanceToZone(int x, int y)

{

return getZone().getDistanceToZone(x, y);

}

 

public double getDistanceToZone(L2Object object)

{

return getZone().getDistanceToZone(object.getX(), object.getY());

}

 

public void revalidateInZone(L2Character character)

{

// If the character can't be affected by this zone return

if (_checkAffected)

{

if (!isAffected(character))

return;

}

 

// If the object is inside the zone...

if (isInsideZone(character.getX(), character.getY(), character.getZ()))

{

// Was the character not yet inside this zone?

if (!_characterList.containsKey(character.getObjectId()))

{

FastList<Quest> quests = this.getQuestByEvent(Quest.QuestEventType.ON_ENTER_ZONE);

if (quests != null)

{

for (Quest quest : quests)

{

quest.notifyEnterZone(character, this);

}

}

_characterList.put(character.getObjectId(), character);

onEnter(character);

}

}

else

{

// Was the character inside this zone?

if (_characterList.containsKey(character.getObjectId()))

{

FastList<Quest> quests = this.getQuestByEvent(Quest.QuestEventType.ON_EXIT_ZONE);

if (quests != null)

{

for (Quest quest : quests)

{

quest.notifyExitZone(character, this);

}

}

_characterList.remove(character.getObjectId());

onExit(character);

}

}

}

 

/**

* Force fully removes a character from the zone

* Should use during teleport / logoff

* @param character

*/

public void removeCharacter(L2Character character)

{

if (_characterList.containsKey(character.getObjectId()))

{

FastList<Quest> quests = this.getQuestByEvent(Quest.QuestEventType.ON_EXIT_ZONE);

if (quests != null)

{

for (Quest quest : quests)

{

quest.notifyExitZone(character, this);

}

}

_characterList.remove(character.getObjectId());

onExit(character);

}

}

 

/**

* Will scan the zones char list for the character

* @param character

* @return

*/

public boolean isCharacterInZone(L2Character character)

{

return _characterList.containsKey(character.getObjectId());

}

 

protected abstract void onEnter(L2Character character);

 

protected abstract void onExit(L2Character character);

 

public abstract void onDieInside(L2Character character);

 

public abstract void onReviveInside(L2Character character);

 

public L2TIntObjectHashMap<L2Character> getCharactersInside()

{

return _characterList;

}

 

public L2Character[] getCharactersInsideArray()

{

return _characterList.getValues(new L2Character[_characterList.size()]);

}

 

public void addQuestEvent(Quest.QuestEventType EventType, Quest q)

{

if (_questEvents == null)

_questEvents = new FastMap<Quest.QuestEventType, FastList<Quest>>();

FastList<Quest> questByEvents = _questEvents.get(EventType);

if (questByEvents == null)

questByEvents = new FastList<Quest>();

if (!questByEvents.contains(q))

questByEvents.add(q);

_questEvents.put(EventType, questByEvents);

}

 

public FastList<Quest> getQuestByEvent(Quest.QuestEventType EventType)

{

if (_questEvents == null)

return null;

return _questEvents.get(EventType);

}

 

/**

* Broadcasts packet to all players inside the zone

*/

public void broadcastPacket(L2GameServerPacket packet)

{

if (_characterList.isEmpty())

return;

 

_characterList.forEachValue(new BroadcastPacket(packet));

}

 

private final class BroadcastPacket implements TObjectProcedure<L2Character>

{

final L2GameServerPacket _packet;

private BroadcastPacket(L2GameServerPacket packet)

{

_packet = packet;

}

 

@Override

public final boolean execute(final L2Character character)

{

if (character != null && character instanceof L2PcInstance)

character.sendPacket(_packet);

return true;

}

}

 

public InstanceType getTargetType()

{

return _target;

}

 

public void setTargetType(InstanceType type)

{

_target = type;

_checkAffected = true;

}

 

@Override

public String toString()

{

return getClass().getSimpleName()+"["+ _id + "]";

}

 

  public void visualizeZone(int z)

  {

      getZone().visualizeZone(z);

  }

 

      public FastMap<Integer, L2Character> getCharactersInside()

        {

            return _characterList;

    }

    }

  • 0
Posted

-public L2TIntObjectHashMap<L2Character> getCharactersInside()
-        {
-		return _characterList;
-	}
+	public FastMap<Integer, L2Character> getCharactersInside()
+  {
+      return _characterList;
+	}

 

 

Press a lot of times Ctrl+Z till code gets to retail. Then try to change this

Guest
This topic is now closed to further replies.


  • Posts

    • Yes I know that sounds hilarious, but I am looking for 1-2 passionate people that are down to team up on a project I wanted to "revive". We had a server up and running in 2023 and closed the same year due to the team splitting up for personal differences. However, thought of bringing it back.   What we have (In terms of infrastructure): - Website is up and running - Launcher is done - Dedicated server is up and running - Control Panel (Web) is in development, almost finished. We'll use my own one (https://nimeracp.com/)   What expansion did we pick? Well our project was based on Interlude, but we could expand anytime later with alternative servers/chronicles.   Who are we? Basically it's me and @protoftw at the moment. I've been dealing with the website + launcher and maybe java development (For now), proto with datapack/textures/htmls/npcs/zones etc.   What we're looking for: Just one or two people that love what they do and got the required expertise/skills to be a part of this. Whatever you're into, if you just want to be GM, Event GM, help with development or whatever, we look for any kind of addition to the team.   Reach out by adding me on discord. ID: splicho
    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Finvip invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Teracod invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Torrentseeds account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Blackhattorrent account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas invite Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite Theoldschool.cc account W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account   Movies Trackers :   Anthelion account Pixelhd account Cinemageddon account DVDSeed account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Tb-asian account Cathode-ray.tube account Greatposterwall account Telly account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account   HD Trackers :   Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account   Music Trackers :   Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account   E-Learning Trackers :   BitSpyder invite Brsociety account Learnbits invite Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite   TV-Trackers :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account Tvroad.info   XXX - Porn Trackers :   FemdomCult account Pornbay account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz account Graphics Trackers: Forum.Cgpersia account Gfxpeers account Forum.gfxdomain account   Documentary Trackers:   Forums.mvgroup account   Others   Fora.snahp.eu account Board4all.biz account Filewarez.tv account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Militaryzone account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account   NZB :   Drunkenslug account Drunkenslug invite Usenet-4all account Brothers-of-Usenet account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account Nzbsa.co.za account Bd25.eu account NZB.to account Samuraiplace account Tabula-rasa.pw account   Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Webmoney, Revolut   If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • hook kernel32 createfilew. example interlude client try load these dat files until login screen. CreateFileW("WarningNotice-e.dat") CreateFileW("EULA-e.dat") CreateFileW("Chargrp.dat") CreateFileW("Hairgrp.dat") CreateFileW("Helmetgrp.dat") CreateFileW("HairAccessarygrp.dat") CreateFileW("EtcItemgrp.dat") CreateFileW("Armorgrp.dat") CreateFileW("Weapongrp.dat") CreateFileW("ItemName-e.dat") CreateFileW("Npcgrp.dat") CreateFileW("NpcName-e.dat") CreateFileW("Skillgrp.dat") CreateFileW("SkillName-e.dat") CreateFileW("ActionName-e.dat") CreateFileW("QuestName-e.dat") CreateFileW("SystemMsg-e.dat") CreateFileW("ServerName-e.dat") CreateFileW("IDCName-e.dat") CreateFileW("Creditgrp-e.dat") CreateFileW("SysString-e.dat") CreateFileW("ClassInfo-e.dat") CreateFileW("Recipe-c.dat") CreateFileW("Hennagrp-e.dat") CreateFileW("SkillSoundgrp.dat") CreateFileW("CastleName-e.dat") CreateFileW("SymbolName-e.dat") CreateFileW("EnterEventgrp.dat") CreateFileW("CommandName-e.dat") CreateFileW("Obscene-e.dat") CreateFileW("MusicInfo.dat") CreateFileW("MobSkillAnimgrp.dat") CreateFileW("StaticObject-e.dat") CreateFileW("ZoneName-e.dat") CreateFileW("Logongrp.dat") CreateFileW("Hairaccessorylocgrp.dat") CreateFileW("RaidData-e.dat") CreateFileW("HuntingZone-e.dat") CreateFileW("GameTip-e.dat") CreateFileW("optiondata_client-e.dat") CreateFileW("variationeffectgrp-e.dat")  
    • For Premium Pack you need to pay 1000€   Yikes lol
  • Topics

×
×
  • 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