Jump to content

[Discuss + Results] FIFA Worldcup 2010 (South Africa) By; Chucky


Recommended Posts

Posted

Spain Just win cause they have 6 players of Barcelona and they know how to play (they played the whole year together and all the other teams just played 2-3 friendlies and max 7 games on WC) they played exact the same gameplay like Barcelona at most at the mitfield (with Xavi Iniesta and Busquets) Xavi alonso did almost nothing

Posted

Spain Just win cause they have 6 players of Barcelona and they know how to play (they played the whole year together and all the other teams just played 2-3 friendlies and max 7 games on WC) they played exact the same gameplay like Barcelona at most at the mitfield (with Xavi Iniesta and Busquets) Xavi alonso did almost nothing

 

So where's the problem?

Posted

Spain Just win cause they have 6 players of Barcelona and they know how to play (they played the whole year together and all the other teams just played 2-3 friendlies and max 7 games on WC) they played exact the same gameplay like Barcelona at most at the mitfield (with Xavi Iniesta and Busquets) Xavi alonso did almost nothing

 

you are absolutely wrong...

 

1.Spain not only barcelona...just to mention 2 name casillas(best goalkeeper of the world Real Madrid), Ramos(best right defender of the world Real Madrid)

 

2.every team played tons of friendlies and played tons of qualification matches besides of the matches of the world cup

 

so shut up

Posted

Spain Just win cause they have 6 players of Barcelona and they know how to play

 

7 actually not 6 that's enough to proove how unaware of football you are and i really think you should stop talking so you avoid embarassing yourself and making me say you are a complete idiot which indeed you are.

Posted

7 actually not 6 that's enough to proove how unaware of football you are and i really think you should stop talking so you avoid embarassing yourself and making me say you are a complete idiot which indeed you are.

Well David Villa hasn't signed yet to Barcelona xD

Posted

Well David Villa hasn't signed yet to Barcelona xD

 

actually he did seems like u're an idiot too.

Posted

Well David Villa hasn't signed yet to Barcelona xD

If he hasnt yet he will for sure. Barcelone is maybe the best European  Club Team. He would be very idiot to ingore it.

Posted

actually he did seems like u're an idiot too.

Well it seems you need to chill out a bit he hasn't signed yet even though he was presented.I didn't say he won't sign to Barcelona I said he hasn't signed yet and it's true.

Posted

Well it seems you need to chill out a bit he hasn't signed yet even though he was presented.I didn't say he won't sign to Barcelona I said he hasn't signed yet and it's true.

 

signed or not he IS in barcelona...

Guest
This topic is now closed to further replies.



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