Jump to content

Recommended Posts

Posted

if u want players in server i suggest u to upload the patch in other uploader cos in rapidshare u already hitted the maximum

GL with your project i will try to log in to see how its

Posted

are u sure? ^^ go make the Dagger changing quest and get gb ^^

aha that dagger quest dont work.there are 2differed gold bars the are not same.

 

Posted

stfu with flaming ok? I made a server most of u like the last guy is posting for post count so FU I dont give a shit, u could at least say nice job dude, and btw the daggger quest gives gb that spawns at ur quest invetory not item invetory so doesnt matter if they keep doing dagger quest for life. if u want to judge my server I advice you to log in first, thx in advnace.

 

I were on dumbass. Server sux, uptime 100% cause of 5 ppls on ? Hm gratz. As i said l2j noob powa.

Posted

Ok I SWEAR TO GOD THAT THIS SERVER WONT CLOSE AFTER 1 WEEK NOR 1 MONTH, ITS ON A COMPUTER ABLE TO HOST UP TO 50 PPL!!!!!!!!

Its on a "bad" computer because I cant give 250$ every month when nobody is online its just a waste of time, its better to get the ppl and than the hardware. Now stop flaming and other shit coz its true u cant even dream of making a server like that and live with that instead of going around and postng crap for some post counts. If u want to judge or post any critics I whould advise you first to join and take a look on what is going on and than post anything u want.

Posted

Ok I SWEAR TO GOD THAT THIS SERVER WONT CLOSE AFTER 1 WEEK NOR 1 MONTH, ITS ON A COMPUTER ABLE TO HOST UP TO 50 PPL!!!!!!!!

ho now u told us it wont close in 1 month for sure it will close in 1 week with this pc pff
Posted

well yeah realy there are more servers worst than that, why u start blaming and curshing this server? I have seen awfull servers using ucoz and atm they are closed on wich u were like GOOD JOB NICE DUDE. I still dont understand whats wrong with my server?

Posted

well yeah realy there are more servers worst than that, why u start blaming and curshing this server? I have seen awfull servers using ucoz and atm they are closed on wich u were like GOOD JOB NICE DUDE. I still dont understand whats wrong with my server?

 

Because you did everything wrong.

 

You used a free domain, you hosted the site on a home connection which only leads me to believe that the server itself is hosted on dsl too, and you're greek (not being racist, just saying that greeks seem to open more servers and close them than anyone else).

 

That's why we're all hating on your server. Because you've given us no reason not to. You haven't even provided specs of your server. All you've done is go "it can support 50 pplz!!!! zomg". Really? Based on what? Your years of running servers and being a head developer? Yeah, doubt it.

Posted

Ok fine if u dont want dont join, I am here for ppl that wish to join a pvp server and I havent mentioned everything, I mean that its pretty sure that a server have gk or that it have gm shop or it have noblesse manager, I just didnt want to post crap. Site fixed and u can join now...

Posted

Ok fine if u dont want dont join, I am here for ppl that wish to join a pvp server and I havent mentioned everything, I mean that its pretty sure that a server have gk or that it have gm shop or it have noblesse manager, I just didnt want to post crap. Site fixed and u can join now...

 

l2jdp version=6210

l2j version=3132

 

I have a wall bug, ppl and monster can cast spells and hit while they are behind a wall to a target of the oposite site of wall. They can also do things such as pray on castle siege without even getting in the castle and they also can walk inside the walls thats for mobs too.

Any idea how to fix this? Does it need core work? and if it does is it allowed by the l2j pack copyrights to modifie the core?

thx in advance for help provided.

 

Lol, couldn't even figure out geodata. Congrats. :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..