Jump to content

Recommended Posts

Posted

Hi all  :)

 

Apofasisa Na kanw Share Afto To GTA Giati Mou to zitate Pora pola atoma....

Se Auto To Gta Pou 8a dite Stis Photo Exei Ola ta ama3ia sxedon pou kikloforoune Stin Ellada kai sto e3wteriko....

Episis 8elw na Simioso Pos Ta File's auta Kai genika Olo to post den einai Klemeno apo allo site....

Photo:

 

73017081.png

66438539.png

51666516.png

97034853.png

35065026.png

14329548.png

 

Afto To Link Einai gia na katebasete To GTA Ultimate...Edw

@To Programa Pou 8a balete Ton File Afton Legete BitTorrent Apo Edw to Katebazis

 

 

Auto To Link Einai To GTA 100% Termatismeno Kai mesa sto garaz exei to 1o Ama3h Stin photo......Edw

 

 

Posted

Den einai Mod..Einai Olo to game..San na katebazeis to kanoniko san adreas...Exei para pola Diaforetika pragmata..

Δηλαδή το script.image και το main.scm έχουν γίνει edit με αποτέλεσμα να έχει καινούργια missions λογικά?
Posted

Ola einai alagmena...Apo ta spitia mexri ta ama3ia ta aeroplana kai H A8ropi genikos....

Min sas fani para3eno ama dite ton yo-gi-oh  :D giati ton exw di

Posted

Apo pote ena custom mod 8ewreitai warez?:S

 

Pesta Giati Me to Zori na lene Oti Einai warez....

 

Epidi Dld einai BitTorrent Einai warez kateftian???Tespa Min Spamaroume...Estila kai PM ston Maxtor gia to 8ema Lock+Junk...

Otan bi kai to kita3h 8a To krini autos Me tin Dikia tou apopsi...DEn zitisa Oute karma oute tpt...1 Topic Piga kai ekana kai me arpa3ate apo tin miti

Posted

Apo pote ena custom mod 8ewreitai warez?:S

Custom mod  to les esy auto?Gt ego apo oti vlepo o farty s dini olo to game.

Posted

Den einai Mod..Einai Olo to game..San na katebazeis to kanoniko san adreas...Exei para pola Diaforetika pragmata..

 

Με αυτό εσύ τι συμπεράνεις? Μας λες ότι κάνεις share ολόκληρο το παιχνίδι, θα μας τρελάνεις ρε FarTy?

Posted

Egw apoti katalava to mono poy alazi ine ta img files apo ta models,apo script tipota den alazi...Ultimate mod simeni oti exis piragmeno script opote kati prototipo alazi sto pexnidi ;)

Posted

Daxi ama 8es na to sbisis sbisto...Poly aplo Einai...Kai Einai Olokliro game epidi Ola sxedon Einai diaforetika...

Kai opos Eipa pio pano 8a To krini o Maxtor an 8a Mini kai An Den 8a mini.... ;) ;)

Den 8elw Oute na adiki8w Egw Oute eseis...

  • 2 months later...
Posted

Den Ginete Na To Anebaseis Sto Rapidshare Me Parts??? Na To Katebasw Se 10 Min?:S

 

EDIT : Htan Ena Apo Afta Pou Epsaxna .. Elpizw Na Douleuei .. nC Share!

 

EDIT 2 : Mia Photo Gia To Mod :D (Sto Google Thn Brika)

 

o_lhXrjQzGYSRWcZz.jpg

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