├── .gitignore ├── CMakeLists.txt ├── CompileServer.bat ├── Debug.bat ├── GenerateCodeBlocksProject.bat ├── GenerateMakefiles.bat ├── GenerateVSProject.bat ├── Instructions_Mac.md ├── README.md ├── StartClient.bat ├── StartGame.bat ├── dep ├── CMakeLists.txt ├── include │ ├── enet │ │ ├── callbacks.h │ │ ├── enet.h │ │ ├── list.h │ │ ├── protocol.h │ │ ├── time.h │ │ ├── types.h │ │ ├── unix.h │ │ ├── utility.h │ │ └── win32.h │ ├── intlib │ │ ├── base64.h │ │ ├── blowfish.h │ │ └── general.h │ ├── lua │ │ ├── lapi.h │ │ ├── lauxlib.h │ │ ├── lcode.h │ │ ├── lctype.h │ │ ├── ldebug.h │ │ ├── ldo.h │ │ ├── lfunc.h │ │ ├── lgc.h │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmem.h │ │ ├── lobject.h │ │ ├── lopcodes.h │ │ ├── lparser.h │ │ ├── lstate.h │ │ ├── lstring.h │ │ ├── ltable.h │ │ ├── ltm.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.h │ │ ├── lvm.h │ │ └── lzio.h │ ├── raf │ │ ├── FileReader.h │ │ ├── Inibin.h │ │ ├── MemoryReader.h │ │ ├── RAFFile.h │ │ ├── RAFManager.h │ │ ├── miniz.h │ │ └── tinydir.h │ └── sol │ │ ├── debug.hpp │ │ ├── default_construct.hpp │ │ ├── demangle.hpp │ │ ├── deprecate.hpp │ │ ├── error.hpp │ │ ├── function.hpp │ │ ├── function_types.hpp │ │ ├── object.hpp │ │ ├── proxy.hpp │ │ ├── reference.hpp │ │ ├── resolve.hpp │ │ ├── sol.hpp │ │ ├── stack.hpp │ │ ├── state.hpp │ │ ├── table.hpp │ │ ├── traits.hpp │ │ ├── tuple.hpp │ │ ├── types.hpp │ │ ├── userdata.hpp │ │ └── userdata_traits.hpp └── src │ ├── enet │ ├── Makefile.am │ ├── Makefile.in │ ├── callbacks.c │ ├── host.c │ ├── list.c │ ├── packet.c │ ├── peer.c │ ├── protocol.c │ ├── unix.c │ └── win32.c │ ├── intlib │ ├── base64.cpp │ ├── blowfish.cpp │ └── general.cpp │ ├── lua │ ├── lapi.c │ ├── lauxlib.c │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcorolib.c │ ├── lctype.c │ ├── ldblib.c │ ├── ldebug.c │ ├── ldo.c │ ├── ldump.c │ ├── lfunc.c │ ├── lgc.c │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── lmathlib.c │ ├── lmem.c │ ├── loadlib.c │ ├── loadlib_rel.c │ ├── lobject.c │ ├── lopcodes.c │ ├── loslib.c │ ├── lparser.c │ ├── lstate.c │ ├── lstring.c │ ├── lstrlib.c │ ├── ltable.c │ ├── ltablib.c │ ├── ltm.c │ ├── lua.c │ ├── luac.c │ ├── lundump.c │ ├── lvm.c │ └── lzio.c │ └── raf │ ├── FileReader.cpp │ ├── RAFFile.cpp │ └── RAFManager.cpp ├── dumps └── 4.12 │ ├── 1v1.txt │ └── Riven vs Miss Fortune 1v1.txt ├── gamed ├── CMakeLists.txt ├── include │ ├── AIMesh.h │ ├── Buff.h │ ├── Buffer.h │ ├── Champion.h │ ├── ChampionFactory.h │ ├── ChatBox.h │ ├── Client.h │ ├── CollisionHandler.h │ ├── Fountain.h │ ├── Game.h │ ├── Inventory.h │ ├── Item.h │ ├── ItemManager.h │ ├── LevelProp.h │ ├── Logger.h │ ├── LuaScript.h │ ├── Map.h │ ├── Minion.h │ ├── MinionStats.h │ ├── Object.h │ ├── Packets.h │ ├── Pathfinder.h │ ├── Projectile.h │ ├── Spell.h │ ├── Stats.h │ ├── SummonersRift.h │ ├── Target.h │ ├── Turret.h │ ├── TurretStats.h │ ├── Unit.h │ ├── Vector2.h │ ├── common.h │ ├── stdafx.h │ └── win │ │ └── platforms-time.h └── src │ ├── AIMesh.cpp │ ├── Buff.cpp │ ├── Champion.cpp │ ├── CollisionHandler.cpp │ ├── Fountain.cpp │ ├── Game.cpp │ ├── Handlers.cpp │ ├── Inventory.cpp │ ├── Item.cpp │ ├── ItemManager.cpp │ ├── Logger.cpp │ ├── LuaChampion.cpp │ ├── LuaGame.cpp │ ├── LuaItem.cpp │ ├── LuaScript.cpp │ ├── LuaUnit.cpp │ ├── Map.cpp │ ├── Minion.cpp │ ├── Notifiers.cpp │ ├── Object.cpp │ ├── PacketHandler.cpp │ ├── Packets.cpp │ ├── Pathfinder.cpp │ ├── Projectile.cpp │ ├── Spell.cpp │ ├── Stats.cpp │ ├── SummonersRift.cpp │ ├── Target.cpp │ ├── Turret.cpp │ ├── Unit.cpp │ ├── Vector2.cpp │ └── main.cpp ├── license ├── lua ├── buffs │ └── ToxicShot.lua ├── champions │ ├── Blitzcrank │ │ ├── Passive.lua │ │ ├── Q.lua │ │ └── W.lua │ ├── Braum │ │ ├── E.lua │ │ └── Passive.lua │ ├── Caitlyn │ │ ├── E.lua │ │ ├── Passive.lua │ │ └── Q.lua │ ├── DrMundo │ │ ├── Passive.lua │ │ └── R.lua │ ├── Evelynn │ │ ├── Passive.lua │ │ └── W.lua │ ├── Ezreal │ │ ├── E.lua │ │ ├── Passive.lua │ │ ├── Q.lua │ │ ├── R.lua │ │ └── W.lua │ ├── Gangplank │ │ ├── E.lua │ │ ├── Passive.lua │ │ └── Q.lua │ ├── Garen │ │ ├── Passive.lua │ │ └── Q.lua │ ├── Graves │ │ ├── E.lua │ │ └── Passive.lua │ ├── Kassadin │ │ ├── Q.lua │ │ └── R.lua │ ├── Nidalee │ │ ├── Q.lua │ │ └── R.lua │ ├── Nunu │ │ ├── Passive.lua │ │ └── W.lua │ ├── Poppy │ │ ├── Passive.lua │ │ └── W.lua │ ├── Shaco │ │ ├── Passive.lua │ │ └── Q.lua │ ├── Talon │ │ ├── Passive.lua │ │ └── R.lua │ ├── Teemo │ │ ├── Passive.lua │ │ └── W.lua │ └── Udyr │ │ ├── E.lua │ │ └── Passive.lua ├── config.lua ├── how to add champion ability.txt ├── lib │ └── Vector2.lua ├── maps │ ├── map1.lua │ └── map12.lua ├── readme.md └── troybinList.txt ├── utils ├── Compiling hashgen.txt ├── HashGenerator.cpp ├── compilehashgen.bat ├── hashgen.exe ├── pcapDecrypt │ ├── README.md │ ├── base64.cpp │ ├── base64.h │ ├── blowfish.cpp │ ├── blowfish.h │ ├── pcapDecrypt.cpp │ ├── pcapDecrypt.exe │ └── win │ │ ├── ip.h │ │ └── platforms-time.h └── wireshark │ ├── Compile.bat │ ├── GetLoLGameHash.vbs │ ├── Install.bat │ ├── README.md │ ├── blowfish.c │ └── enet.lua └── win └── NetBeans └── IntWars └── nbproject ├── configurations.xml ├── private ├── CodeAssistancePathMapper.properties ├── Default.properties ├── configurations.xml ├── launcher.properties └── private.xml └── project.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CompileServer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/CompileServer.bat -------------------------------------------------------------------------------- /Debug.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd build\gamed\ 3 | gdb intwars.exe -------------------------------------------------------------------------------- /GenerateCodeBlocksProject.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/GenerateCodeBlocksProject.bat -------------------------------------------------------------------------------- /GenerateMakefiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/GenerateMakefiles.bat -------------------------------------------------------------------------------- /GenerateVSProject.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/GenerateVSProject.bat -------------------------------------------------------------------------------- /Instructions_Mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/Instructions_Mac.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/README.md -------------------------------------------------------------------------------- /StartClient.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/StartClient.bat -------------------------------------------------------------------------------- /StartGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/StartGame.bat -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/CMakeLists.txt -------------------------------------------------------------------------------- /dep/include/enet/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/callbacks.h -------------------------------------------------------------------------------- /dep/include/enet/enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/enet.h -------------------------------------------------------------------------------- /dep/include/enet/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/list.h -------------------------------------------------------------------------------- /dep/include/enet/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/protocol.h -------------------------------------------------------------------------------- /dep/include/enet/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/time.h -------------------------------------------------------------------------------- /dep/include/enet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/types.h -------------------------------------------------------------------------------- /dep/include/enet/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/unix.h -------------------------------------------------------------------------------- /dep/include/enet/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/utility.h -------------------------------------------------------------------------------- /dep/include/enet/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/enet/win32.h -------------------------------------------------------------------------------- /dep/include/intlib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/intlib/base64.h -------------------------------------------------------------------------------- /dep/include/intlib/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/intlib/blowfish.h -------------------------------------------------------------------------------- /dep/include/intlib/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/intlib/general.h -------------------------------------------------------------------------------- /dep/include/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lapi.h -------------------------------------------------------------------------------- /dep/include/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lauxlib.h -------------------------------------------------------------------------------- /dep/include/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lcode.h -------------------------------------------------------------------------------- /dep/include/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lctype.h -------------------------------------------------------------------------------- /dep/include/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/ldebug.h -------------------------------------------------------------------------------- /dep/include/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/ldo.h -------------------------------------------------------------------------------- /dep/include/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lfunc.h -------------------------------------------------------------------------------- /dep/include/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lgc.h -------------------------------------------------------------------------------- /dep/include/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/llex.h -------------------------------------------------------------------------------- /dep/include/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/llimits.h -------------------------------------------------------------------------------- /dep/include/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lmem.h -------------------------------------------------------------------------------- /dep/include/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lobject.h -------------------------------------------------------------------------------- /dep/include/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lopcodes.h -------------------------------------------------------------------------------- /dep/include/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lparser.h -------------------------------------------------------------------------------- /dep/include/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lstate.h -------------------------------------------------------------------------------- /dep/include/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lstring.h -------------------------------------------------------------------------------- /dep/include/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/ltable.h -------------------------------------------------------------------------------- /dep/include/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/ltm.h -------------------------------------------------------------------------------- /dep/include/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lua.h -------------------------------------------------------------------------------- /dep/include/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lua.hpp -------------------------------------------------------------------------------- /dep/include/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/luaconf.h -------------------------------------------------------------------------------- /dep/include/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lualib.h -------------------------------------------------------------------------------- /dep/include/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lundump.h -------------------------------------------------------------------------------- /dep/include/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lvm.h -------------------------------------------------------------------------------- /dep/include/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/lua/lzio.h -------------------------------------------------------------------------------- /dep/include/raf/FileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/FileReader.h -------------------------------------------------------------------------------- /dep/include/raf/Inibin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/Inibin.h -------------------------------------------------------------------------------- /dep/include/raf/MemoryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/MemoryReader.h -------------------------------------------------------------------------------- /dep/include/raf/RAFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/RAFFile.h -------------------------------------------------------------------------------- /dep/include/raf/RAFManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/RAFManager.h -------------------------------------------------------------------------------- /dep/include/raf/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/miniz.h -------------------------------------------------------------------------------- /dep/include/raf/tinydir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/raf/tinydir.h -------------------------------------------------------------------------------- /dep/include/sol/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/debug.hpp -------------------------------------------------------------------------------- /dep/include/sol/default_construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/default_construct.hpp -------------------------------------------------------------------------------- /dep/include/sol/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/demangle.hpp -------------------------------------------------------------------------------- /dep/include/sol/deprecate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/deprecate.hpp -------------------------------------------------------------------------------- /dep/include/sol/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/error.hpp -------------------------------------------------------------------------------- /dep/include/sol/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/function.hpp -------------------------------------------------------------------------------- /dep/include/sol/function_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/function_types.hpp -------------------------------------------------------------------------------- /dep/include/sol/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/object.hpp -------------------------------------------------------------------------------- /dep/include/sol/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/proxy.hpp -------------------------------------------------------------------------------- /dep/include/sol/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/reference.hpp -------------------------------------------------------------------------------- /dep/include/sol/resolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/resolve.hpp -------------------------------------------------------------------------------- /dep/include/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/sol.hpp -------------------------------------------------------------------------------- /dep/include/sol/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/stack.hpp -------------------------------------------------------------------------------- /dep/include/sol/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/state.hpp -------------------------------------------------------------------------------- /dep/include/sol/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/table.hpp -------------------------------------------------------------------------------- /dep/include/sol/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/traits.hpp -------------------------------------------------------------------------------- /dep/include/sol/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/tuple.hpp -------------------------------------------------------------------------------- /dep/include/sol/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/types.hpp -------------------------------------------------------------------------------- /dep/include/sol/userdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/userdata.hpp -------------------------------------------------------------------------------- /dep/include/sol/userdata_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/include/sol/userdata_traits.hpp -------------------------------------------------------------------------------- /dep/src/enet/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/Makefile.am -------------------------------------------------------------------------------- /dep/src/enet/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/Makefile.in -------------------------------------------------------------------------------- /dep/src/enet/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/callbacks.c -------------------------------------------------------------------------------- /dep/src/enet/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/host.c -------------------------------------------------------------------------------- /dep/src/enet/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/list.c -------------------------------------------------------------------------------- /dep/src/enet/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/packet.c -------------------------------------------------------------------------------- /dep/src/enet/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/peer.c -------------------------------------------------------------------------------- /dep/src/enet/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/protocol.c -------------------------------------------------------------------------------- /dep/src/enet/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/unix.c -------------------------------------------------------------------------------- /dep/src/enet/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/enet/win32.c -------------------------------------------------------------------------------- /dep/src/intlib/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/intlib/base64.cpp -------------------------------------------------------------------------------- /dep/src/intlib/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/intlib/blowfish.cpp -------------------------------------------------------------------------------- /dep/src/intlib/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/intlib/general.cpp -------------------------------------------------------------------------------- /dep/src/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lapi.c -------------------------------------------------------------------------------- /dep/src/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lauxlib.c -------------------------------------------------------------------------------- /dep/src/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lbaselib.c -------------------------------------------------------------------------------- /dep/src/lua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lbitlib.c -------------------------------------------------------------------------------- /dep/src/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lcode.c -------------------------------------------------------------------------------- /dep/src/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lcorolib.c -------------------------------------------------------------------------------- /dep/src/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lctype.c -------------------------------------------------------------------------------- /dep/src/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ldblib.c -------------------------------------------------------------------------------- /dep/src/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ldebug.c -------------------------------------------------------------------------------- /dep/src/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ldo.c -------------------------------------------------------------------------------- /dep/src/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ldump.c -------------------------------------------------------------------------------- /dep/src/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lfunc.c -------------------------------------------------------------------------------- /dep/src/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lgc.c -------------------------------------------------------------------------------- /dep/src/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/linit.c -------------------------------------------------------------------------------- /dep/src/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/liolib.c -------------------------------------------------------------------------------- /dep/src/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/llex.c -------------------------------------------------------------------------------- /dep/src/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lmathlib.c -------------------------------------------------------------------------------- /dep/src/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lmem.c -------------------------------------------------------------------------------- /dep/src/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/loadlib.c -------------------------------------------------------------------------------- /dep/src/lua/loadlib_rel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/loadlib_rel.c -------------------------------------------------------------------------------- /dep/src/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lobject.c -------------------------------------------------------------------------------- /dep/src/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lopcodes.c -------------------------------------------------------------------------------- /dep/src/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/loslib.c -------------------------------------------------------------------------------- /dep/src/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lparser.c -------------------------------------------------------------------------------- /dep/src/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lstate.c -------------------------------------------------------------------------------- /dep/src/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lstring.c -------------------------------------------------------------------------------- /dep/src/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lstrlib.c -------------------------------------------------------------------------------- /dep/src/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ltable.c -------------------------------------------------------------------------------- /dep/src/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ltablib.c -------------------------------------------------------------------------------- /dep/src/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/ltm.c -------------------------------------------------------------------------------- /dep/src/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lua.c -------------------------------------------------------------------------------- /dep/src/lua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/luac.c -------------------------------------------------------------------------------- /dep/src/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lundump.c -------------------------------------------------------------------------------- /dep/src/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lvm.c -------------------------------------------------------------------------------- /dep/src/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/lua/lzio.c -------------------------------------------------------------------------------- /dep/src/raf/FileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/raf/FileReader.cpp -------------------------------------------------------------------------------- /dep/src/raf/RAFFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/raf/RAFFile.cpp -------------------------------------------------------------------------------- /dep/src/raf/RAFManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dep/src/raf/RAFManager.cpp -------------------------------------------------------------------------------- /dumps/4.12/1v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dumps/4.12/1v1.txt -------------------------------------------------------------------------------- /dumps/4.12/Riven vs Miss Fortune 1v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/dumps/4.12/Riven vs Miss Fortune 1v1.txt -------------------------------------------------------------------------------- /gamed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/CMakeLists.txt -------------------------------------------------------------------------------- /gamed/include/AIMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/AIMesh.h -------------------------------------------------------------------------------- /gamed/include/Buff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Buff.h -------------------------------------------------------------------------------- /gamed/include/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Buffer.h -------------------------------------------------------------------------------- /gamed/include/Champion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Champion.h -------------------------------------------------------------------------------- /gamed/include/ChampionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/ChampionFactory.h -------------------------------------------------------------------------------- /gamed/include/ChatBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/ChatBox.h -------------------------------------------------------------------------------- /gamed/include/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Client.h -------------------------------------------------------------------------------- /gamed/include/CollisionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/CollisionHandler.h -------------------------------------------------------------------------------- /gamed/include/Fountain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Fountain.h -------------------------------------------------------------------------------- /gamed/include/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Game.h -------------------------------------------------------------------------------- /gamed/include/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Inventory.h -------------------------------------------------------------------------------- /gamed/include/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Item.h -------------------------------------------------------------------------------- /gamed/include/ItemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/ItemManager.h -------------------------------------------------------------------------------- /gamed/include/LevelProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/LevelProp.h -------------------------------------------------------------------------------- /gamed/include/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Logger.h -------------------------------------------------------------------------------- /gamed/include/LuaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/LuaScript.h -------------------------------------------------------------------------------- /gamed/include/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Map.h -------------------------------------------------------------------------------- /gamed/include/Minion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Minion.h -------------------------------------------------------------------------------- /gamed/include/MinionStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/MinionStats.h -------------------------------------------------------------------------------- /gamed/include/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Object.h -------------------------------------------------------------------------------- /gamed/include/Packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Packets.h -------------------------------------------------------------------------------- /gamed/include/Pathfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Pathfinder.h -------------------------------------------------------------------------------- /gamed/include/Projectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Projectile.h -------------------------------------------------------------------------------- /gamed/include/Spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Spell.h -------------------------------------------------------------------------------- /gamed/include/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Stats.h -------------------------------------------------------------------------------- /gamed/include/SummonersRift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/SummonersRift.h -------------------------------------------------------------------------------- /gamed/include/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Target.h -------------------------------------------------------------------------------- /gamed/include/Turret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Turret.h -------------------------------------------------------------------------------- /gamed/include/TurretStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/TurretStats.h -------------------------------------------------------------------------------- /gamed/include/Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Unit.h -------------------------------------------------------------------------------- /gamed/include/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/Vector2.h -------------------------------------------------------------------------------- /gamed/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/common.h -------------------------------------------------------------------------------- /gamed/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/stdafx.h -------------------------------------------------------------------------------- /gamed/include/win/platforms-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/include/win/platforms-time.h -------------------------------------------------------------------------------- /gamed/src/AIMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/AIMesh.cpp -------------------------------------------------------------------------------- /gamed/src/Buff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Buff.cpp -------------------------------------------------------------------------------- /gamed/src/Champion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Champion.cpp -------------------------------------------------------------------------------- /gamed/src/CollisionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/CollisionHandler.cpp -------------------------------------------------------------------------------- /gamed/src/Fountain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Fountain.cpp -------------------------------------------------------------------------------- /gamed/src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Game.cpp -------------------------------------------------------------------------------- /gamed/src/Handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Handlers.cpp -------------------------------------------------------------------------------- /gamed/src/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Inventory.cpp -------------------------------------------------------------------------------- /gamed/src/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Item.cpp -------------------------------------------------------------------------------- /gamed/src/ItemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/ItemManager.cpp -------------------------------------------------------------------------------- /gamed/src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Logger.cpp -------------------------------------------------------------------------------- /gamed/src/LuaChampion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/LuaChampion.cpp -------------------------------------------------------------------------------- /gamed/src/LuaGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/LuaGame.cpp -------------------------------------------------------------------------------- /gamed/src/LuaItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/LuaItem.cpp -------------------------------------------------------------------------------- /gamed/src/LuaScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/LuaScript.cpp -------------------------------------------------------------------------------- /gamed/src/LuaUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/LuaUnit.cpp -------------------------------------------------------------------------------- /gamed/src/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Map.cpp -------------------------------------------------------------------------------- /gamed/src/Minion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Minion.cpp -------------------------------------------------------------------------------- /gamed/src/Notifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Notifiers.cpp -------------------------------------------------------------------------------- /gamed/src/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Object.cpp -------------------------------------------------------------------------------- /gamed/src/PacketHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/PacketHandler.cpp -------------------------------------------------------------------------------- /gamed/src/Packets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Packets.cpp -------------------------------------------------------------------------------- /gamed/src/Pathfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Pathfinder.cpp -------------------------------------------------------------------------------- /gamed/src/Projectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Projectile.cpp -------------------------------------------------------------------------------- /gamed/src/Spell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Spell.cpp -------------------------------------------------------------------------------- /gamed/src/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Stats.cpp -------------------------------------------------------------------------------- /gamed/src/SummonersRift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/SummonersRift.cpp -------------------------------------------------------------------------------- /gamed/src/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Target.cpp -------------------------------------------------------------------------------- /gamed/src/Turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Turret.cpp -------------------------------------------------------------------------------- /gamed/src/Unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Unit.cpp -------------------------------------------------------------------------------- /gamed/src/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/Vector2.cpp -------------------------------------------------------------------------------- /gamed/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/gamed/src/main.cpp -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/license -------------------------------------------------------------------------------- /lua/buffs/ToxicShot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/buffs/ToxicShot.lua -------------------------------------------------------------------------------- /lua/champions/Blitzcrank/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Blitzcrank/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Blitzcrank/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Blitzcrank/Q.lua -------------------------------------------------------------------------------- /lua/champions/Blitzcrank/W.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Blitzcrank/W.lua -------------------------------------------------------------------------------- /lua/champions/Braum/E.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Braum/E.lua -------------------------------------------------------------------------------- /lua/champions/Braum/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Braum/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Caitlyn/E.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Caitlyn/E.lua -------------------------------------------------------------------------------- /lua/champions/Caitlyn/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Caitlyn/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Caitlyn/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Caitlyn/Q.lua -------------------------------------------------------------------------------- /lua/champions/DrMundo/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/DrMundo/Passive.lua -------------------------------------------------------------------------------- /lua/champions/DrMundo/R.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/DrMundo/R.lua -------------------------------------------------------------------------------- /lua/champions/Evelynn/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Evelynn/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Evelynn/W.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Evelynn/W.lua -------------------------------------------------------------------------------- /lua/champions/Ezreal/E.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Ezreal/E.lua -------------------------------------------------------------------------------- /lua/champions/Ezreal/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Ezreal/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Ezreal/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Ezreal/Q.lua -------------------------------------------------------------------------------- /lua/champions/Ezreal/R.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Ezreal/R.lua -------------------------------------------------------------------------------- /lua/champions/Ezreal/W.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Ezreal/W.lua -------------------------------------------------------------------------------- /lua/champions/Gangplank/E.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Gangplank/E.lua -------------------------------------------------------------------------------- /lua/champions/Gangplank/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Gangplank/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Gangplank/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Gangplank/Q.lua -------------------------------------------------------------------------------- /lua/champions/Garen/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Garen/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Garen/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Garen/Q.lua -------------------------------------------------------------------------------- /lua/champions/Graves/E.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Graves/E.lua -------------------------------------------------------------------------------- /lua/champions/Graves/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Graves/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Kassadin/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Kassadin/Q.lua -------------------------------------------------------------------------------- /lua/champions/Kassadin/R.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Kassadin/R.lua -------------------------------------------------------------------------------- /lua/champions/Nidalee/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Nidalee/Q.lua -------------------------------------------------------------------------------- /lua/champions/Nidalee/R.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Nidalee/R.lua -------------------------------------------------------------------------------- /lua/champions/Nunu/Passive.lua: -------------------------------------------------------------------------------- 1 | function applyEffects() 2 | end 3 | -------------------------------------------------------------------------------- /lua/champions/Nunu/W.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Nunu/W.lua -------------------------------------------------------------------------------- /lua/champions/Poppy/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Poppy/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Poppy/W.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Poppy/W.lua -------------------------------------------------------------------------------- /lua/champions/Shaco/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Shaco/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Shaco/Q.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Shaco/Q.lua -------------------------------------------------------------------------------- /lua/champions/Talon/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Talon/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Talon/R.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Talon/R.lua -------------------------------------------------------------------------------- /lua/champions/Teemo/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Teemo/Passive.lua -------------------------------------------------------------------------------- /lua/champions/Teemo/W.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Teemo/W.lua -------------------------------------------------------------------------------- /lua/champions/Udyr/E.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Udyr/E.lua -------------------------------------------------------------------------------- /lua/champions/Udyr/Passive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/champions/Udyr/Passive.lua -------------------------------------------------------------------------------- /lua/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/config.lua -------------------------------------------------------------------------------- /lua/how to add champion ability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/how to add champion ability.txt -------------------------------------------------------------------------------- /lua/lib/Vector2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/lib/Vector2.lua -------------------------------------------------------------------------------- /lua/maps/map1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/maps/map1.lua -------------------------------------------------------------------------------- /lua/maps/map12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/maps/map12.lua -------------------------------------------------------------------------------- /lua/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/readme.md -------------------------------------------------------------------------------- /lua/troybinList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/lua/troybinList.txt -------------------------------------------------------------------------------- /utils/Compiling hashgen.txt: -------------------------------------------------------------------------------- 1 | (Windows) 2 | 3 | Run 4 | g++ HashGenerator.cpp -lws2_32 -o "hashgen.exe" 5 | 6 | -------------------------------------------------------------------------------- /utils/HashGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/HashGenerator.cpp -------------------------------------------------------------------------------- /utils/compilehashgen.bat: -------------------------------------------------------------------------------- 1 | g++ HashGenerator.cpp -lws2_32 -o "hashgen.exe" 2 | -------------------------------------------------------------------------------- /utils/hashgen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/hashgen.exe -------------------------------------------------------------------------------- /utils/pcapDecrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/README.md -------------------------------------------------------------------------------- /utils/pcapDecrypt/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/base64.cpp -------------------------------------------------------------------------------- /utils/pcapDecrypt/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/base64.h -------------------------------------------------------------------------------- /utils/pcapDecrypt/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/blowfish.cpp -------------------------------------------------------------------------------- /utils/pcapDecrypt/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/blowfish.h -------------------------------------------------------------------------------- /utils/pcapDecrypt/pcapDecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/pcapDecrypt.cpp -------------------------------------------------------------------------------- /utils/pcapDecrypt/pcapDecrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/pcapDecrypt.exe -------------------------------------------------------------------------------- /utils/pcapDecrypt/win/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/win/ip.h -------------------------------------------------------------------------------- /utils/pcapDecrypt/win/platforms-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/pcapDecrypt/win/platforms-time.h -------------------------------------------------------------------------------- /utils/wireshark/Compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/wireshark/Compile.bat -------------------------------------------------------------------------------- /utils/wireshark/GetLoLGameHash.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/wireshark/GetLoLGameHash.vbs -------------------------------------------------------------------------------- /utils/wireshark/Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/wireshark/Install.bat -------------------------------------------------------------------------------- /utils/wireshark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/wireshark/README.md -------------------------------------------------------------------------------- /utils/wireshark/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/wireshark/blowfish.c -------------------------------------------------------------------------------- /utils/wireshark/enet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/utils/wireshark/enet.lua -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/win/NetBeans/IntWars/nbproject/configurations.xml -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/private/Default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/win/NetBeans/IntWars/nbproject/private/Default.properties -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/win/NetBeans/IntWars/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/private/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/win/NetBeans/IntWars/nbproject/private/launcher.properties -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/win/NetBeans/IntWars/nbproject/private/private.xml -------------------------------------------------------------------------------- /win/NetBeans/IntWars/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elyotna/IntWars/HEAD/win/NetBeans/IntWars/nbproject/project.xml --------------------------------------------------------------------------------