├── .gitattributes ├── .gitignore ├── README.md ├── announce ├── announce.cpp ├── announce.sln ├── announce.vcproj ├── httpclient.cpp ├── httpclient.h ├── runutil.cpp └── runutil.h ├── archive ├── build │ └── samp.saa ├── files │ ├── LAn2.ide │ ├── LAw2.ide │ ├── LAxref.ide │ ├── LOADSCS.txd │ ├── ar_stats.dat │ ├── bindat.bin │ ├── carmods.dat │ ├── default.dat │ ├── default.ide │ ├── gta.dat │ ├── handling.cfg │ ├── logo.png │ ├── main.scm │ ├── melee.dat │ ├── object.dat │ ├── ped.dat │ ├── peds.ide │ ├── props.ide │ ├── script.img │ ├── shopping.dat │ ├── stream.ini │ ├── surface.dat │ ├── timecyc.dat │ ├── tracks2.dat │ ├── tracks4.dat │ ├── vehicle.txd │ ├── vehicles.ide │ └── weapon.dat ├── pkey.h └── skey.h ├── arctool2 ├── ArchiveBuilder.cpp ├── ArchiveBuilder.h ├── arctool2.cpp ├── arctool2.sln └── arctool2.vcproj ├── bot ├── bot.rc ├── bot.sln ├── bot.vcproj ├── format.cpp ├── format.h ├── gamemodes.cpp ├── gamemodes.h ├── main.cpp ├── main.h ├── mathutils.cpp ├── mathutils.h ├── net │ ├── netgame.cpp │ ├── netgame.h │ ├── netrpc.cpp │ ├── netrpc.h │ ├── playerpool.cpp │ ├── playerpool.h │ ├── scriptrpc.cpp │ ├── scriptrpc.h │ ├── vehiclepool.cpp │ └── vehiclepool.h ├── resource.h ├── runutil.cpp ├── runutil.h ├── scrcore.cpp ├── scrcustom.cpp ├── scrtimers.cpp ├── scrtimers.h ├── unnamed_1.cpp └── unnamed_1.h ├── exgui ├── About.dfm ├── About.pas ├── EliRT.obj ├── ExportFavorites.dfm ├── ExportFavorites.pas ├── FindSort.dcu ├── FindSort.pas ├── GIFImage.dcu ├── GIFImage.pas ├── ImportFavorites.dfm ├── ImportFavorites.pas ├── Main.ddp ├── Main.dfm ├── Main.pas ├── MasterUpdate.dfm ├── MasterUpdate.pas ├── Rcon.dfm ├── Rcon.pas ├── RconConfig.dfm ├── RconConfig.pas ├── ServerProperties.dfm ├── ServerProperties.pas ├── Settings.dfm ├── Settings.pas ├── hh.dcu ├── hh.pas ├── samp.cfg ├── samp.dof ├── samp.dpr ├── samp.res ├── unit_webrunform.dcu ├── unit_webrunform.ddp ├── unit_webrunform.dfm └── unit_webrunform.pas ├── font ├── gtaweap3.ttf └── sampaux3.ttf ├── idb ├── announce │ ├── announce │ ├── announce.exe │ ├── announce_ELF32.idb │ └── announce_PE32.idb ├── bot │ ├── samp-npc │ ├── samp-npc-win32.exe │ ├── samp-npc-win32.idb │ └── samp-npc.idb ├── launch3 │ ├── samp_debug.exe │ └── samp_debug.idb ├── rcon │ ├── rcon.exe │ └── rcon.idb ├── saco │ ├── samp.dll │ └── samp.idb └── server │ ├── samp-server.exe │ ├── samp-server.idb │ ├── samp03svr │ └── samp03svr.idb ├── launch3 ├── ReadMe.txt ├── Resource.h ├── StdAfx.cpp ├── StdAfx.h ├── detours.h ├── detours.lib ├── launch3.clw ├── launch3.cpp ├── launch3.dsp ├── launch3.dsw ├── launch3.h ├── launch3.rc ├── launch3Dlg.cpp ├── launch3Dlg.h └── res │ ├── launch3.ico │ └── launch3.rc2 ├── nsis └── samp.nsi ├── pawno ├── include │ ├── a_actor.inc │ ├── a_http.inc │ ├── a_npc.inc │ ├── a_objects.inc │ ├── a_players.inc │ ├── a_samp.inc │ ├── a_sampdb.inc │ ├── a_vehicles.inc │ ├── core.inc │ ├── datagram.inc │ ├── file.inc │ ├── float.inc │ ├── string.inc │ └── time.inc ├── libpawnc.dll ├── new.pwn ├── pawn-lang.pdf ├── pawn.ico ├── pawnc.dll ├── pawncc.exe ├── pawno.exe └── settings.ini ├── raknet ├── AsynchronousFileIO.cpp ├── AsynchronousFileIO.h ├── AutopatcherPatchContext.h ├── AutopatcherRepositoryInterface.h ├── BigTypes.h ├── BitStream.cpp ├── BitStream.h ├── BitStream_NoTemplate.cpp ├── BitStream_NoTemplate.h ├── CheckSum.cpp ├── CheckSum.h ├── ClientContextStruct.h ├── CommandParserInterface.cpp ├── CommandParserInterface.h ├── ConnectionGraph.cpp ├── ConnectionGraph.h ├── ConsoleServer.cpp ├── ConsoleServer.h ├── DS_BPlusTree.h ├── DS_BinarySearchTree.h ├── DS_ByteQueue.cpp ├── DS_ByteQueue.h ├── DS_Heap.h ├── DS_HuffmanEncodingTree.cpp ├── DS_HuffmanEncodingTree.h ├── DS_HuffmanEncodingTreeFactory.h ├── DS_HuffmanEncodingTreeNode.h ├── DS_LinkedList.h ├── DS_List.h ├── DS_Map.h ├── DS_MemoryPool.h ├── DS_OrderedChannelHeap.h ├── DS_OrderedList.h ├── DS_Queue.h ├── DS_QueueLinkedList.h ├── DS_RangeList.h ├── DS_Table.cpp ├── DS_Table.h ├── DS_Tree.h ├── DS_WeightedGraph.h ├── DataBlockEncryptor.cpp ├── DataBlockEncryptor.h ├── DataCompressor.cpp ├── DataCompressor.h ├── DirectoryDeltaTransfer.cpp ├── DirectoryDeltaTransfer.h ├── EmailSender.cpp ├── EmailSender.h ├── EncodeClassName.cpp ├── Export.h ├── ExtendedOverlappedPool.cpp ├── ExtendedOverlappedPool.h ├── FileList.cpp ├── FileList.h ├── FileListTransfer.cpp ├── FileListTransfer.h ├── FileListTransferCBInterface.h ├── FileOperations.cpp ├── FileOperations.h ├── FullyConnectedMesh.cpp ├── FullyConnectedMesh.h ├── GetTime.cpp ├── GetTime.h ├── InternalPacket.h ├── InternalPacketPool.cpp ├── InternalPacketPool.h ├── LightweightDatabaseClient.cpp ├── LightweightDatabaseClient.h ├── LightweightDatabaseCommon.cpp ├── LightweightDatabaseCommon.h ├── LightweightDatabaseServer.h ├── LinuxStrings.cpp ├── LinuxStrings.h ├── LogCommandParser.cpp ├── LogCommandParser.h ├── MTUSize.h ├── Makefile ├── Makefile.am ├── NatPunchthrough.cpp ├── NatPunchthrough.h ├── NetworkIDGenerator.cpp ├── NetworkIDGenerator.h ├── NetworkTypes.cpp ├── NetworkTypes.h ├── PacketConsoleLogger.cpp ├── PacketConsoleLogger.h ├── PacketEnumerations.h ├── PacketFileLogger.cpp ├── PacketFileLogger.h ├── PacketLogger.cpp ├── PacketLogger.h ├── PacketPool.h ├── PacketPriority.h ├── PluginInterface.cpp ├── PluginInterface.h ├── RPCMap.cpp ├── RPCMap.h ├── RPCNode.h ├── RSACrypt.h ├── RakAssert.h ├── RakClient.cpp ├── RakClient.h ├── RakClientInterface.h ├── RakNetCommandParser.cpp ├── RakNetCommandParser.h ├── RakNetDefines.h ├── RakNetStatistics.cpp ├── RakNetStatistics.h ├── RakNetTransport.cpp ├── RakNetTransport.h ├── RakNetworkFactory.cpp ├── RakNetworkFactory.h ├── RakPeer.cpp ├── RakPeer.h ├── RakPeerInterface.h ├── RakServer.cpp ├── RakServer.h ├── RakServerInterface.h ├── RakSleep.cpp ├── RakSleep.h ├── Rand.cpp ├── Rand.h ├── ReliabilityLayer.cpp ├── ReliabilityLayer.h ├── Replica.h ├── ReplicaEnums.h ├── ReplicaManager.h ├── Router.cpp ├── Router.h ├── RouterInterface.h ├── SAMPRPC.h ├── SHA1.cpp ├── SHA1.h ├── SimpleMutex.cpp ├── SimpleMutex.h ├── SimpleTCPServer.h ├── SingleProducerConsumer.h ├── SocketLayer.cpp ├── SocketLayer.h ├── StringCompressor.cpp ├── StringCompressor.h ├── StringTable.cpp ├── StringTable.h ├── SystemAddressList.cpp ├── SystemDatabaseClient.cpp ├── SystemDatabaseClient.h ├── SystemDatabaseServer.cpp ├── SystemDatabaseServer.h ├── TCPInterface.cpp ├── TCPInterface.h ├── TEABlockEncryptor.cpp ├── TEABlockEncryptor.h ├── TableSerializer.cpp ├── TableSerializer.h ├── TelnetTransport.cpp ├── TelnetTransport.h ├── ThreadPool.h ├── TransportInterface.h ├── Types.h ├── _findfirst.cpp ├── _findfirst.h ├── lightweightdatabaseserver.cpp ├── multiplayer.h ├── replicamanager.cpp ├── rijndael-boxes.h ├── rijndael.cpp ├── rijndael.h └── systemaddresslist.h ├── rcon ├── main.cpp ├── main.h ├── rcon.dsp └── rcon.dsw ├── saco.sln ├── saco ├── archive │ ├── ArchiveCommon.h │ ├── ArchiveFS.cpp │ ├── ArchiveFS.h │ ├── CryptoContext.cpp │ ├── CryptoContext.h │ ├── CryptoFns.cpp │ ├── CryptoFns.h │ ├── Hasher.cpp │ ├── Hasher.h │ ├── KeyPair.cpp │ ├── KeyPair.h │ ├── Obfuscator.h │ ├── Signer.cpp │ ├── Signer.h │ ├── Stream.h │ ├── TinyEncrypt.cpp │ └── TinyEncrypt.h ├── audiostream.cpp ├── audiostream.h ├── bass.h ├── bass.lib ├── buildinfo.h ├── chatwindow.cpp ├── chatwindow.h ├── checksums.cpp ├── checksums.h ├── cmdprocs.cpp ├── cmdwindow.cpp ├── cmdwindow.h ├── config.cpp ├── config.h ├── d3d9 │ ├── common │ │ ├── DXUT.cpp │ │ ├── DXUT.h │ │ ├── DXUTMesh.cpp │ │ ├── DXUTMesh.h │ │ ├── DXUTSettingsDlg.cpp │ │ ├── DXUTSettingsDlg.h │ │ ├── DXUTenum.cpp │ │ ├── DXUTenum.h │ │ ├── DXUTgui.cpp │ │ ├── DXUTgui.h │ │ ├── DXUTmisc.cpp │ │ ├── DXUTmisc.h │ │ ├── DXUTsound.cpp │ │ ├── DXUTsound.h │ │ ├── directx.ico │ │ ├── dxstdafx.cpp │ │ └── dxstdafx.h │ ├── d3d9.lib │ ├── d3dutil.cpp │ ├── d3dx9.lib │ ├── dsound.lib │ ├── dxguid.lib │ ├── dxutil.cpp │ └── include │ │ ├── PIXPlugin.h │ │ ├── d3d.h │ │ ├── d3d8.h │ │ ├── d3d8caps.h │ │ ├── d3d8types.h │ │ ├── d3d9.h │ │ ├── d3d9caps.h │ │ ├── d3d9types.h │ │ ├── d3dcaps.h │ │ ├── d3dfont.h │ │ ├── d3drm.h │ │ ├── d3drmdef.h │ │ ├── d3drmobj.h │ │ ├── d3drmwin.h │ │ ├── d3dtypes.h │ │ ├── d3dutil.h │ │ ├── d3dvec.inl │ │ ├── d3dx9.h │ │ ├── d3dx9.lib │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ ├── d3dx9xof.h │ │ ├── ddraw.h │ │ ├── dinput.h │ │ ├── dinputd.h │ │ ├── dls1.h │ │ ├── dls2.h │ │ ├── dmdls.h │ │ ├── dmerror.h │ │ ├── dmksctrl.h │ │ ├── dmplugin.h │ │ ├── dmusbuff.h │ │ ├── dmusicc.h │ │ ├── dmusicf.h │ │ ├── dmusici.h │ │ ├── dmusics.h │ │ ├── dpaddr.h │ │ ├── dplay.h │ │ ├── dplay8.h │ │ ├── dplobby.h │ │ ├── dplobby8.h │ │ ├── dpnathlp.h │ │ ├── dsconf.h │ │ ├── dsetup.h │ │ ├── dsound.h │ │ ├── dvoice.h │ │ ├── dvp.h │ │ ├── dx7todx8.h │ │ ├── dxdiag.h │ │ ├── dxerr8.h │ │ ├── dxerr9.h │ │ ├── dxfile.h │ │ ├── dxsdkver.h │ │ ├── dxtrans.h │ │ ├── dxutil.h │ │ ├── multimon.h │ │ ├── rmxfguid.h │ │ ├── rmxftmpl.h │ │ └── strsafe.h ├── d3dhook │ ├── ID3DXFontHook.cpp │ ├── ID3DXFontHook.h │ ├── IDirect3DDevice9Hook.cpp │ └── IDirect3DDevice9Hook.h ├── deathwindow.cpp ├── deathwindow.h ├── detours.h ├── detours.lib ├── exceptbox.rc ├── exceptions.cpp ├── fhicl-sha1.cpp ├── fhicl-sha1.h ├── filechecks.cpp ├── filechecks.h ├── filehooks.cpp ├── filehooks.h ├── filesystem.cpp ├── filesystem.h ├── fontrender.cpp ├── fontrender.h ├── game │ ├── actorped.cpp │ ├── actorped.h │ ├── address.h │ ├── aimstuff.cpp │ ├── aimstuff.h │ ├── animlist.cpp │ ├── audio.cpp │ ├── audio.h │ ├── camera.cpp │ ├── camera.h │ ├── cheats.cpp │ ├── common.h │ ├── entity.cpp │ ├── entity.h │ ├── font.cpp │ ├── font.h │ ├── game.cpp │ ├── game.h │ ├── hooks.cpp │ ├── hudcolor.cpp │ ├── hudcolor.h │ ├── keystuff.cpp │ ├── keystuff.h │ ├── menu.cpp │ ├── menu.h │ ├── patches.cpp │ ├── playerped.cpp │ ├── playerped.h │ ├── rwstuff.cpp │ ├── rwstuff.h │ ├── scripting.cpp │ ├── scripting.h │ ├── task.cpp │ ├── task.h │ ├── textures.cpp │ ├── textures.h │ ├── unnamed_1.cpp │ ├── util.cpp │ ├── util.h │ ├── vehicle.cpp │ └── vehicle.h ├── helpdialog.cpp ├── helpdialog.h ├── httpclient.cpp ├── httpclient.h ├── label.cpp ├── label.h ├── main.cpp ├── main.h ├── md5.cpp ├── md5.h ├── mod.h ├── net │ ├── actorpool.cpp │ ├── actorpool.h │ ├── gangzonepool.cpp │ ├── gangzonepool.h │ ├── labelpool.cpp │ ├── labelpool.h │ ├── localplayer.cpp │ ├── localplayer.h │ ├── menupool.cpp │ ├── menupool.h │ ├── netgame.cpp │ ├── netgame.h │ ├── netplayer.cpp │ ├── netplayer.h │ ├── netrpc.cpp │ ├── netrpc.h │ ├── objectpool.cpp │ ├── objectpool.h │ ├── pickuppool.cpp │ ├── pickuppool.h │ ├── playerpool.cpp │ ├── playerpool.h │ ├── remoteplayer.cpp │ ├── remoteplayer.h │ ├── scriptrpc.cpp │ ├── scriptrpc.h │ ├── textdrawpool.cpp │ ├── textdrawpool.h │ ├── vehiclepool.cpp │ └── vehiclepool.h ├── netstats.cpp ├── netstats.h ├── newplayertags.cpp ├── newplayertags.h ├── outputdebugstring.h ├── playertags.cpp ├── playertags.h ├── resource.h ├── resource1.h ├── runutil.cpp ├── runutil.h ├── saco.rc ├── saco.vcproj ├── scoreboard.cpp ├── scoreboard.h ├── spawnscreen.cpp ├── spawnscreen.h ├── subclass.cpp ├── svrnetstats.cpp ├── svrnetstats.h ├── unkclass10.cpp ├── unkclass10.h ├── unkclass11.cpp ├── unkclass11.h ├── unkclass12.cpp ├── unkclass12.h ├── unkclass13.cpp ├── unkclass13.h ├── unkclass14.cpp ├── unkclass14.h ├── unkclass15.cpp ├── unkclass15.h ├── unkclass3.cpp ├── unkclass3.h ├── unkclass4.cpp ├── unkclass4.h ├── unkclass5.cpp ├── unkclass5.h ├── unkclass8.cpp └── unkclass8.h ├── scm ├── SASCM.INI ├── main.scm ├── main.txt └── script.img ├── server ├── actorpool.cpp ├── actorpool.h ├── amx │ ├── amx.c │ ├── amx.h │ ├── amxDGram.c │ ├── amxcons.c │ ├── amxcore.c │ ├── amxdefn.asm │ ├── amxexecn.asm │ ├── amxfile.c │ ├── amxfloat.c │ ├── amxstring.c │ ├── amxtime.c │ ├── getch.c │ ├── getch.h │ ├── osdefs.h │ ├── prefix.c │ ├── prefix.h │ └── sclinux.h ├── console.cpp ├── console.h ├── exceptions.cpp ├── filterscripts.cpp ├── filterscripts.h ├── format.cpp ├── format.h ├── gamemodes.cpp ├── gamemodes.h ├── gangzonepool.cpp ├── gangzonepool.h ├── labelpool.cpp ├── labelpool.h ├── main.cpp ├── main.h ├── mathutils.cpp ├── mathutils.h ├── menupool.cpp ├── menupool.h ├── netgame.cpp ├── netgame.h ├── netrpc.cpp ├── netrpc.h ├── objectpool.cpp ├── objectpool.h ├── pickuppool.cpp ├── pickuppool.h ├── player.cpp ├── player.h ├── playerpool.cpp ├── playerpool.h ├── plugincommon.h ├── plugininternal.h ├── plugins.cpp ├── plugins.h ├── resource.h ├── runutil.cpp ├── runutil.h ├── scrcore.cpp ├── scrcustom.cpp ├── scrhttps.cpp ├── scrhttps.h ├── scrtimers.cpp ├── scrtimers.h ├── server.rc ├── server.sln ├── server.vcproj ├── sqlite │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite_amx.cpp ├── system.h ├── textdrawpool.cpp ├── textdrawpool.h ├── vehiclepool.cpp └── vehiclepool.h └── ttmath ├── ttmath.h ├── ttmathbig.h ├── ttmathint.h ├── ttmathmisc.h ├── ttmathobjects.h ├── ttmathparser.h ├── ttmaththreads.h ├── ttmathtypes.h ├── ttmathuint.h ├── ttmathuint_noasm.h ├── ttmathuint_x86.h ├── ttmathuint_x86_64.h └── ttmathuint_x86_64_msvc.asm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/README.md -------------------------------------------------------------------------------- /announce/announce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/announce.cpp -------------------------------------------------------------------------------- /announce/announce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/announce.sln -------------------------------------------------------------------------------- /announce/announce.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/announce.vcproj -------------------------------------------------------------------------------- /announce/httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/httpclient.cpp -------------------------------------------------------------------------------- /announce/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/httpclient.h -------------------------------------------------------------------------------- /announce/runutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/runutil.cpp -------------------------------------------------------------------------------- /announce/runutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/announce/runutil.h -------------------------------------------------------------------------------- /archive/build/samp.saa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/build/samp.saa -------------------------------------------------------------------------------- /archive/files/LAn2.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/LAn2.ide -------------------------------------------------------------------------------- /archive/files/LAw2.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/LAw2.ide -------------------------------------------------------------------------------- /archive/files/LAxref.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/LAxref.ide -------------------------------------------------------------------------------- /archive/files/LOADSCS.txd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/LOADSCS.txd -------------------------------------------------------------------------------- /archive/files/ar_stats.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/ar_stats.dat -------------------------------------------------------------------------------- /archive/files/bindat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/bindat.bin -------------------------------------------------------------------------------- /archive/files/carmods.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/carmods.dat -------------------------------------------------------------------------------- /archive/files/default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/default.dat -------------------------------------------------------------------------------- /archive/files/default.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/default.ide -------------------------------------------------------------------------------- /archive/files/gta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/gta.dat -------------------------------------------------------------------------------- /archive/files/handling.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/handling.cfg -------------------------------------------------------------------------------- /archive/files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/logo.png -------------------------------------------------------------------------------- /archive/files/main.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/main.scm -------------------------------------------------------------------------------- /archive/files/melee.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/melee.dat -------------------------------------------------------------------------------- /archive/files/object.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/object.dat -------------------------------------------------------------------------------- /archive/files/ped.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/ped.dat -------------------------------------------------------------------------------- /archive/files/peds.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/peds.ide -------------------------------------------------------------------------------- /archive/files/props.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/props.ide -------------------------------------------------------------------------------- /archive/files/script.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/script.img -------------------------------------------------------------------------------- /archive/files/shopping.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/shopping.dat -------------------------------------------------------------------------------- /archive/files/stream.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/stream.ini -------------------------------------------------------------------------------- /archive/files/surface.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/surface.dat -------------------------------------------------------------------------------- /archive/files/timecyc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/timecyc.dat -------------------------------------------------------------------------------- /archive/files/tracks2.dat: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /archive/files/tracks4.dat: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /archive/files/vehicle.txd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/vehicle.txd -------------------------------------------------------------------------------- /archive/files/vehicles.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/vehicles.ide -------------------------------------------------------------------------------- /archive/files/weapon.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/files/weapon.dat -------------------------------------------------------------------------------- /archive/pkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/pkey.h -------------------------------------------------------------------------------- /archive/skey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/archive/skey.h -------------------------------------------------------------------------------- /arctool2/ArchiveBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/arctool2/ArchiveBuilder.cpp -------------------------------------------------------------------------------- /arctool2/ArchiveBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/arctool2/ArchiveBuilder.h -------------------------------------------------------------------------------- /arctool2/arctool2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/arctool2/arctool2.cpp -------------------------------------------------------------------------------- /arctool2/arctool2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/arctool2/arctool2.sln -------------------------------------------------------------------------------- /arctool2/arctool2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/arctool2/arctool2.vcproj -------------------------------------------------------------------------------- /bot/bot.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/bot.rc -------------------------------------------------------------------------------- /bot/bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/bot.sln -------------------------------------------------------------------------------- /bot/bot.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/bot.vcproj -------------------------------------------------------------------------------- /bot/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/format.cpp -------------------------------------------------------------------------------- /bot/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/format.h -------------------------------------------------------------------------------- /bot/gamemodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/gamemodes.cpp -------------------------------------------------------------------------------- /bot/gamemodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/gamemodes.h -------------------------------------------------------------------------------- /bot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/main.cpp -------------------------------------------------------------------------------- /bot/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/main.h -------------------------------------------------------------------------------- /bot/mathutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/mathutils.cpp -------------------------------------------------------------------------------- /bot/mathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/mathutils.h -------------------------------------------------------------------------------- /bot/net/netgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/netgame.cpp -------------------------------------------------------------------------------- /bot/net/netgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/netgame.h -------------------------------------------------------------------------------- /bot/net/netrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/netrpc.cpp -------------------------------------------------------------------------------- /bot/net/netrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/netrpc.h -------------------------------------------------------------------------------- /bot/net/playerpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/playerpool.cpp -------------------------------------------------------------------------------- /bot/net/playerpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/playerpool.h -------------------------------------------------------------------------------- /bot/net/scriptrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/scriptrpc.cpp -------------------------------------------------------------------------------- /bot/net/scriptrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/scriptrpc.h -------------------------------------------------------------------------------- /bot/net/vehiclepool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/vehiclepool.cpp -------------------------------------------------------------------------------- /bot/net/vehiclepool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/net/vehiclepool.h -------------------------------------------------------------------------------- /bot/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/resource.h -------------------------------------------------------------------------------- /bot/runutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/runutil.cpp -------------------------------------------------------------------------------- /bot/runutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/runutil.h -------------------------------------------------------------------------------- /bot/scrcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/scrcore.cpp -------------------------------------------------------------------------------- /bot/scrcustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/scrcustom.cpp -------------------------------------------------------------------------------- /bot/scrtimers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/scrtimers.cpp -------------------------------------------------------------------------------- /bot/scrtimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/scrtimers.h -------------------------------------------------------------------------------- /bot/unnamed_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/unnamed_1.cpp -------------------------------------------------------------------------------- /bot/unnamed_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/bot/unnamed_1.h -------------------------------------------------------------------------------- /exgui/About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/About.dfm -------------------------------------------------------------------------------- /exgui/About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/About.pas -------------------------------------------------------------------------------- /exgui/EliRT.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/EliRT.obj -------------------------------------------------------------------------------- /exgui/ExportFavorites.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/ExportFavorites.dfm -------------------------------------------------------------------------------- /exgui/ExportFavorites.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/ExportFavorites.pas -------------------------------------------------------------------------------- /exgui/FindSort.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/FindSort.dcu -------------------------------------------------------------------------------- /exgui/FindSort.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/FindSort.pas -------------------------------------------------------------------------------- /exgui/GIFImage.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/GIFImage.dcu -------------------------------------------------------------------------------- /exgui/GIFImage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/GIFImage.pas -------------------------------------------------------------------------------- /exgui/ImportFavorites.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/ImportFavorites.dfm -------------------------------------------------------------------------------- /exgui/ImportFavorites.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/ImportFavorites.pas -------------------------------------------------------------------------------- /exgui/Main.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Main.ddp -------------------------------------------------------------------------------- /exgui/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Main.dfm -------------------------------------------------------------------------------- /exgui/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Main.pas -------------------------------------------------------------------------------- /exgui/MasterUpdate.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/MasterUpdate.dfm -------------------------------------------------------------------------------- /exgui/MasterUpdate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/MasterUpdate.pas -------------------------------------------------------------------------------- /exgui/Rcon.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Rcon.dfm -------------------------------------------------------------------------------- /exgui/Rcon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Rcon.pas -------------------------------------------------------------------------------- /exgui/RconConfig.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/RconConfig.dfm -------------------------------------------------------------------------------- /exgui/RconConfig.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/RconConfig.pas -------------------------------------------------------------------------------- /exgui/ServerProperties.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/ServerProperties.dfm -------------------------------------------------------------------------------- /exgui/ServerProperties.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/ServerProperties.pas -------------------------------------------------------------------------------- /exgui/Settings.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Settings.dfm -------------------------------------------------------------------------------- /exgui/Settings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/Settings.pas -------------------------------------------------------------------------------- /exgui/hh.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/hh.dcu -------------------------------------------------------------------------------- /exgui/hh.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/hh.pas -------------------------------------------------------------------------------- /exgui/samp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/samp.cfg -------------------------------------------------------------------------------- /exgui/samp.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/samp.dof -------------------------------------------------------------------------------- /exgui/samp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/samp.dpr -------------------------------------------------------------------------------- /exgui/samp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/samp.res -------------------------------------------------------------------------------- /exgui/unit_webrunform.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/unit_webrunform.dcu -------------------------------------------------------------------------------- /exgui/unit_webrunform.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/unit_webrunform.ddp -------------------------------------------------------------------------------- /exgui/unit_webrunform.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/unit_webrunform.dfm -------------------------------------------------------------------------------- /exgui/unit_webrunform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/exgui/unit_webrunform.pas -------------------------------------------------------------------------------- /font/gtaweap3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/font/gtaweap3.ttf -------------------------------------------------------------------------------- /font/sampaux3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/font/sampaux3.ttf -------------------------------------------------------------------------------- /idb/announce/announce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/announce/announce -------------------------------------------------------------------------------- /idb/announce/announce.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/announce/announce.exe -------------------------------------------------------------------------------- /idb/announce/announce_ELF32.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/announce/announce_ELF32.idb -------------------------------------------------------------------------------- /idb/announce/announce_PE32.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/announce/announce_PE32.idb -------------------------------------------------------------------------------- /idb/bot/samp-npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/bot/samp-npc -------------------------------------------------------------------------------- /idb/bot/samp-npc-win32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/bot/samp-npc-win32.exe -------------------------------------------------------------------------------- /idb/bot/samp-npc-win32.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/bot/samp-npc-win32.idb -------------------------------------------------------------------------------- /idb/bot/samp-npc.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/bot/samp-npc.idb -------------------------------------------------------------------------------- /idb/launch3/samp_debug.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/launch3/samp_debug.exe -------------------------------------------------------------------------------- /idb/launch3/samp_debug.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/launch3/samp_debug.idb -------------------------------------------------------------------------------- /idb/rcon/rcon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/rcon/rcon.exe -------------------------------------------------------------------------------- /idb/rcon/rcon.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/rcon/rcon.idb -------------------------------------------------------------------------------- /idb/saco/samp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/saco/samp.dll -------------------------------------------------------------------------------- /idb/saco/samp.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/saco/samp.idb -------------------------------------------------------------------------------- /idb/server/samp-server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/server/samp-server.exe -------------------------------------------------------------------------------- /idb/server/samp-server.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/server/samp-server.idb -------------------------------------------------------------------------------- /idb/server/samp03svr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/server/samp03svr -------------------------------------------------------------------------------- /idb/server/samp03svr.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/idb/server/samp03svr.idb -------------------------------------------------------------------------------- /launch3/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/ReadMe.txt -------------------------------------------------------------------------------- /launch3/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/Resource.h -------------------------------------------------------------------------------- /launch3/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/StdAfx.cpp -------------------------------------------------------------------------------- /launch3/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/StdAfx.h -------------------------------------------------------------------------------- /launch3/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/detours.h -------------------------------------------------------------------------------- /launch3/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/detours.lib -------------------------------------------------------------------------------- /launch3/launch3.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3.clw -------------------------------------------------------------------------------- /launch3/launch3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3.cpp -------------------------------------------------------------------------------- /launch3/launch3.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3.dsp -------------------------------------------------------------------------------- /launch3/launch3.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3.dsw -------------------------------------------------------------------------------- /launch3/launch3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3.h -------------------------------------------------------------------------------- /launch3/launch3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3.rc -------------------------------------------------------------------------------- /launch3/launch3Dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3Dlg.cpp -------------------------------------------------------------------------------- /launch3/launch3Dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/launch3Dlg.h -------------------------------------------------------------------------------- /launch3/res/launch3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/res/launch3.ico -------------------------------------------------------------------------------- /launch3/res/launch3.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/launch3/res/launch3.rc2 -------------------------------------------------------------------------------- /nsis/samp.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/nsis/samp.nsi -------------------------------------------------------------------------------- /pawno/include/a_actor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_actor.inc -------------------------------------------------------------------------------- /pawno/include/a_http.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_http.inc -------------------------------------------------------------------------------- /pawno/include/a_npc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_npc.inc -------------------------------------------------------------------------------- /pawno/include/a_objects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_objects.inc -------------------------------------------------------------------------------- /pawno/include/a_players.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_players.inc -------------------------------------------------------------------------------- /pawno/include/a_samp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_samp.inc -------------------------------------------------------------------------------- /pawno/include/a_sampdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_sampdb.inc -------------------------------------------------------------------------------- /pawno/include/a_vehicles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/a_vehicles.inc -------------------------------------------------------------------------------- /pawno/include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/core.inc -------------------------------------------------------------------------------- /pawno/include/datagram.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/datagram.inc -------------------------------------------------------------------------------- /pawno/include/file.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/file.inc -------------------------------------------------------------------------------- /pawno/include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/float.inc -------------------------------------------------------------------------------- /pawno/include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/string.inc -------------------------------------------------------------------------------- /pawno/include/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/include/time.inc -------------------------------------------------------------------------------- /pawno/libpawnc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/libpawnc.dll -------------------------------------------------------------------------------- /pawno/new.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/new.pwn -------------------------------------------------------------------------------- /pawno/pawn-lang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/pawn-lang.pdf -------------------------------------------------------------------------------- /pawno/pawn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/pawn.ico -------------------------------------------------------------------------------- /pawno/pawnc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/pawnc.dll -------------------------------------------------------------------------------- /pawno/pawncc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/pawncc.exe -------------------------------------------------------------------------------- /pawno/pawno.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/pawno.exe -------------------------------------------------------------------------------- /pawno/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/pawno/settings.ini -------------------------------------------------------------------------------- /raknet/AsynchronousFileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/AsynchronousFileIO.cpp -------------------------------------------------------------------------------- /raknet/AsynchronousFileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/AsynchronousFileIO.h -------------------------------------------------------------------------------- /raknet/AutopatcherPatchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/AutopatcherPatchContext.h -------------------------------------------------------------------------------- /raknet/AutopatcherRepositoryInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/AutopatcherRepositoryInterface.h -------------------------------------------------------------------------------- /raknet/BigTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/BigTypes.h -------------------------------------------------------------------------------- /raknet/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/BitStream.cpp -------------------------------------------------------------------------------- /raknet/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/BitStream.h -------------------------------------------------------------------------------- /raknet/BitStream_NoTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/BitStream_NoTemplate.cpp -------------------------------------------------------------------------------- /raknet/BitStream_NoTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/BitStream_NoTemplate.h -------------------------------------------------------------------------------- /raknet/CheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/CheckSum.cpp -------------------------------------------------------------------------------- /raknet/CheckSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/CheckSum.h -------------------------------------------------------------------------------- /raknet/ClientContextStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ClientContextStruct.h -------------------------------------------------------------------------------- /raknet/CommandParserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/CommandParserInterface.cpp -------------------------------------------------------------------------------- /raknet/CommandParserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/CommandParserInterface.h -------------------------------------------------------------------------------- /raknet/ConnectionGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ConnectionGraph.cpp -------------------------------------------------------------------------------- /raknet/ConnectionGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ConnectionGraph.h -------------------------------------------------------------------------------- /raknet/ConsoleServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ConsoleServer.cpp -------------------------------------------------------------------------------- /raknet/ConsoleServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ConsoleServer.h -------------------------------------------------------------------------------- /raknet/DS_BPlusTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_BPlusTree.h -------------------------------------------------------------------------------- /raknet/DS_BinarySearchTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_BinarySearchTree.h -------------------------------------------------------------------------------- /raknet/DS_ByteQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_ByteQueue.cpp -------------------------------------------------------------------------------- /raknet/DS_ByteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_ByteQueue.h -------------------------------------------------------------------------------- /raknet/DS_Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_Heap.h -------------------------------------------------------------------------------- /raknet/DS_HuffmanEncodingTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_HuffmanEncodingTree.cpp -------------------------------------------------------------------------------- /raknet/DS_HuffmanEncodingTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_HuffmanEncodingTree.h -------------------------------------------------------------------------------- /raknet/DS_HuffmanEncodingTreeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_HuffmanEncodingTreeFactory.h -------------------------------------------------------------------------------- /raknet/DS_HuffmanEncodingTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_HuffmanEncodingTreeNode.h -------------------------------------------------------------------------------- /raknet/DS_LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_LinkedList.h -------------------------------------------------------------------------------- /raknet/DS_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_List.h -------------------------------------------------------------------------------- /raknet/DS_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_Map.h -------------------------------------------------------------------------------- /raknet/DS_MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_MemoryPool.h -------------------------------------------------------------------------------- /raknet/DS_OrderedChannelHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_OrderedChannelHeap.h -------------------------------------------------------------------------------- /raknet/DS_OrderedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_OrderedList.h -------------------------------------------------------------------------------- /raknet/DS_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_Queue.h -------------------------------------------------------------------------------- /raknet/DS_QueueLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_QueueLinkedList.h -------------------------------------------------------------------------------- /raknet/DS_RangeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_RangeList.h -------------------------------------------------------------------------------- /raknet/DS_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_Table.cpp -------------------------------------------------------------------------------- /raknet/DS_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_Table.h -------------------------------------------------------------------------------- /raknet/DS_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_Tree.h -------------------------------------------------------------------------------- /raknet/DS_WeightedGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DS_WeightedGraph.h -------------------------------------------------------------------------------- /raknet/DataBlockEncryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DataBlockEncryptor.cpp -------------------------------------------------------------------------------- /raknet/DataBlockEncryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DataBlockEncryptor.h -------------------------------------------------------------------------------- /raknet/DataCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DataCompressor.cpp -------------------------------------------------------------------------------- /raknet/DataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DataCompressor.h -------------------------------------------------------------------------------- /raknet/DirectoryDeltaTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DirectoryDeltaTransfer.cpp -------------------------------------------------------------------------------- /raknet/DirectoryDeltaTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/DirectoryDeltaTransfer.h -------------------------------------------------------------------------------- /raknet/EmailSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/EmailSender.cpp -------------------------------------------------------------------------------- /raknet/EmailSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/EmailSender.h -------------------------------------------------------------------------------- /raknet/EncodeClassName.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /raknet/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Export.h -------------------------------------------------------------------------------- /raknet/ExtendedOverlappedPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ExtendedOverlappedPool.cpp -------------------------------------------------------------------------------- /raknet/ExtendedOverlappedPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ExtendedOverlappedPool.h -------------------------------------------------------------------------------- /raknet/FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileList.cpp -------------------------------------------------------------------------------- /raknet/FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileList.h -------------------------------------------------------------------------------- /raknet/FileListTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileListTransfer.cpp -------------------------------------------------------------------------------- /raknet/FileListTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileListTransfer.h -------------------------------------------------------------------------------- /raknet/FileListTransferCBInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileListTransferCBInterface.h -------------------------------------------------------------------------------- /raknet/FileOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileOperations.cpp -------------------------------------------------------------------------------- /raknet/FileOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FileOperations.h -------------------------------------------------------------------------------- /raknet/FullyConnectedMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FullyConnectedMesh.cpp -------------------------------------------------------------------------------- /raknet/FullyConnectedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/FullyConnectedMesh.h -------------------------------------------------------------------------------- /raknet/GetTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/GetTime.cpp -------------------------------------------------------------------------------- /raknet/GetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/GetTime.h -------------------------------------------------------------------------------- /raknet/InternalPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/InternalPacket.h -------------------------------------------------------------------------------- /raknet/InternalPacketPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/InternalPacketPool.cpp -------------------------------------------------------------------------------- /raknet/InternalPacketPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/InternalPacketPool.h -------------------------------------------------------------------------------- /raknet/LightweightDatabaseClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LightweightDatabaseClient.cpp -------------------------------------------------------------------------------- /raknet/LightweightDatabaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LightweightDatabaseClient.h -------------------------------------------------------------------------------- /raknet/LightweightDatabaseCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LightweightDatabaseCommon.cpp -------------------------------------------------------------------------------- /raknet/LightweightDatabaseCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LightweightDatabaseCommon.h -------------------------------------------------------------------------------- /raknet/LightweightDatabaseServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LightweightDatabaseServer.h -------------------------------------------------------------------------------- /raknet/LinuxStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LinuxStrings.cpp -------------------------------------------------------------------------------- /raknet/LinuxStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LinuxStrings.h -------------------------------------------------------------------------------- /raknet/LogCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LogCommandParser.cpp -------------------------------------------------------------------------------- /raknet/LogCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/LogCommandParser.h -------------------------------------------------------------------------------- /raknet/MTUSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/MTUSize.h -------------------------------------------------------------------------------- /raknet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Makefile -------------------------------------------------------------------------------- /raknet/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Makefile.am -------------------------------------------------------------------------------- /raknet/NatPunchthrough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/NatPunchthrough.cpp -------------------------------------------------------------------------------- /raknet/NatPunchthrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/NatPunchthrough.h -------------------------------------------------------------------------------- /raknet/NetworkIDGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/NetworkIDGenerator.cpp -------------------------------------------------------------------------------- /raknet/NetworkIDGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/NetworkIDGenerator.h -------------------------------------------------------------------------------- /raknet/NetworkTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/NetworkTypes.cpp -------------------------------------------------------------------------------- /raknet/NetworkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/NetworkTypes.h -------------------------------------------------------------------------------- /raknet/PacketConsoleLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketConsoleLogger.cpp -------------------------------------------------------------------------------- /raknet/PacketConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketConsoleLogger.h -------------------------------------------------------------------------------- /raknet/PacketEnumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketEnumerations.h -------------------------------------------------------------------------------- /raknet/PacketFileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketFileLogger.cpp -------------------------------------------------------------------------------- /raknet/PacketFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketFileLogger.h -------------------------------------------------------------------------------- /raknet/PacketLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketLogger.cpp -------------------------------------------------------------------------------- /raknet/PacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketLogger.h -------------------------------------------------------------------------------- /raknet/PacketPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketPool.h -------------------------------------------------------------------------------- /raknet/PacketPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PacketPriority.h -------------------------------------------------------------------------------- /raknet/PluginInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PluginInterface.cpp -------------------------------------------------------------------------------- /raknet/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/PluginInterface.h -------------------------------------------------------------------------------- /raknet/RPCMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RPCMap.cpp -------------------------------------------------------------------------------- /raknet/RPCMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RPCMap.h -------------------------------------------------------------------------------- /raknet/RPCNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RPCNode.h -------------------------------------------------------------------------------- /raknet/RSACrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RSACrypt.h -------------------------------------------------------------------------------- /raknet/RakAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakAssert.h -------------------------------------------------------------------------------- /raknet/RakClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakClient.cpp -------------------------------------------------------------------------------- /raknet/RakClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakClient.h -------------------------------------------------------------------------------- /raknet/RakClientInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakClientInterface.h -------------------------------------------------------------------------------- /raknet/RakNetCommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetCommandParser.cpp -------------------------------------------------------------------------------- /raknet/RakNetCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetCommandParser.h -------------------------------------------------------------------------------- /raknet/RakNetDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetDefines.h -------------------------------------------------------------------------------- /raknet/RakNetStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetStatistics.cpp -------------------------------------------------------------------------------- /raknet/RakNetStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetStatistics.h -------------------------------------------------------------------------------- /raknet/RakNetTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetTransport.cpp -------------------------------------------------------------------------------- /raknet/RakNetTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetTransport.h -------------------------------------------------------------------------------- /raknet/RakNetworkFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetworkFactory.cpp -------------------------------------------------------------------------------- /raknet/RakNetworkFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakNetworkFactory.h -------------------------------------------------------------------------------- /raknet/RakPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakPeer.cpp -------------------------------------------------------------------------------- /raknet/RakPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakPeer.h -------------------------------------------------------------------------------- /raknet/RakPeerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakPeerInterface.h -------------------------------------------------------------------------------- /raknet/RakServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakServer.cpp -------------------------------------------------------------------------------- /raknet/RakServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakServer.h -------------------------------------------------------------------------------- /raknet/RakServerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakServerInterface.h -------------------------------------------------------------------------------- /raknet/RakSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakSleep.cpp -------------------------------------------------------------------------------- /raknet/RakSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RakSleep.h -------------------------------------------------------------------------------- /raknet/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Rand.cpp -------------------------------------------------------------------------------- /raknet/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Rand.h -------------------------------------------------------------------------------- /raknet/ReliabilityLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ReliabilityLayer.cpp -------------------------------------------------------------------------------- /raknet/ReliabilityLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ReliabilityLayer.h -------------------------------------------------------------------------------- /raknet/Replica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Replica.h -------------------------------------------------------------------------------- /raknet/ReplicaEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ReplicaEnums.h -------------------------------------------------------------------------------- /raknet/ReplicaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ReplicaManager.h -------------------------------------------------------------------------------- /raknet/Router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Router.cpp -------------------------------------------------------------------------------- /raknet/Router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Router.h -------------------------------------------------------------------------------- /raknet/RouterInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/RouterInterface.h -------------------------------------------------------------------------------- /raknet/SAMPRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SAMPRPC.h -------------------------------------------------------------------------------- /raknet/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SHA1.cpp -------------------------------------------------------------------------------- /raknet/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SHA1.h -------------------------------------------------------------------------------- /raknet/SimpleMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SimpleMutex.cpp -------------------------------------------------------------------------------- /raknet/SimpleMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SimpleMutex.h -------------------------------------------------------------------------------- /raknet/SimpleTCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SimpleTCPServer.h -------------------------------------------------------------------------------- /raknet/SingleProducerConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SingleProducerConsumer.h -------------------------------------------------------------------------------- /raknet/SocketLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SocketLayer.cpp -------------------------------------------------------------------------------- /raknet/SocketLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SocketLayer.h -------------------------------------------------------------------------------- /raknet/StringCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/StringCompressor.cpp -------------------------------------------------------------------------------- /raknet/StringCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/StringCompressor.h -------------------------------------------------------------------------------- /raknet/StringTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/StringTable.cpp -------------------------------------------------------------------------------- /raknet/StringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/StringTable.h -------------------------------------------------------------------------------- /raknet/SystemAddressList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SystemAddressList.cpp -------------------------------------------------------------------------------- /raknet/SystemDatabaseClient.cpp: -------------------------------------------------------------------------------- 1 | #include "SystemDatabaseClient.h" 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /raknet/SystemDatabaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SystemDatabaseClient.h -------------------------------------------------------------------------------- /raknet/SystemDatabaseServer.cpp: -------------------------------------------------------------------------------- 1 | #include "SystemDatabaseServer.h" 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /raknet/SystemDatabaseServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/SystemDatabaseServer.h -------------------------------------------------------------------------------- /raknet/TCPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TCPInterface.cpp -------------------------------------------------------------------------------- /raknet/TCPInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TCPInterface.h -------------------------------------------------------------------------------- /raknet/TEABlockEncryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TEABlockEncryptor.cpp -------------------------------------------------------------------------------- /raknet/TEABlockEncryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TEABlockEncryptor.h -------------------------------------------------------------------------------- /raknet/TableSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TableSerializer.cpp -------------------------------------------------------------------------------- /raknet/TableSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TableSerializer.h -------------------------------------------------------------------------------- /raknet/TelnetTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TelnetTransport.cpp -------------------------------------------------------------------------------- /raknet/TelnetTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TelnetTransport.h -------------------------------------------------------------------------------- /raknet/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/ThreadPool.h -------------------------------------------------------------------------------- /raknet/TransportInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/TransportInterface.h -------------------------------------------------------------------------------- /raknet/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/Types.h -------------------------------------------------------------------------------- /raknet/_findfirst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/_findfirst.cpp -------------------------------------------------------------------------------- /raknet/_findfirst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/_findfirst.h -------------------------------------------------------------------------------- /raknet/lightweightdatabaseserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/lightweightdatabaseserver.cpp -------------------------------------------------------------------------------- /raknet/multiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/multiplayer.h -------------------------------------------------------------------------------- /raknet/replicamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/replicamanager.cpp -------------------------------------------------------------------------------- /raknet/rijndael-boxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/rijndael-boxes.h -------------------------------------------------------------------------------- /raknet/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/rijndael.cpp -------------------------------------------------------------------------------- /raknet/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/rijndael.h -------------------------------------------------------------------------------- /raknet/systemaddresslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/raknet/systemaddresslist.h -------------------------------------------------------------------------------- /rcon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/rcon/main.cpp -------------------------------------------------------------------------------- /rcon/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/rcon/main.h -------------------------------------------------------------------------------- /rcon/rcon.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/rcon/rcon.dsp -------------------------------------------------------------------------------- /rcon/rcon.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/rcon/rcon.dsw -------------------------------------------------------------------------------- /saco.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco.sln -------------------------------------------------------------------------------- /saco/archive/ArchiveCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/ArchiveCommon.h -------------------------------------------------------------------------------- /saco/archive/ArchiveFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/ArchiveFS.cpp -------------------------------------------------------------------------------- /saco/archive/ArchiveFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/ArchiveFS.h -------------------------------------------------------------------------------- /saco/archive/CryptoContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/CryptoContext.cpp -------------------------------------------------------------------------------- /saco/archive/CryptoContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/CryptoContext.h -------------------------------------------------------------------------------- /saco/archive/CryptoFns.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define CRYPT_FN_CPP 3 | #include "CryptoFns.h" 4 | -------------------------------------------------------------------------------- /saco/archive/CryptoFns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/CryptoFns.h -------------------------------------------------------------------------------- /saco/archive/Hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/Hasher.cpp -------------------------------------------------------------------------------- /saco/archive/Hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/Hasher.h -------------------------------------------------------------------------------- /saco/archive/KeyPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/KeyPair.cpp -------------------------------------------------------------------------------- /saco/archive/KeyPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/KeyPair.h -------------------------------------------------------------------------------- /saco/archive/Obfuscator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/Obfuscator.h -------------------------------------------------------------------------------- /saco/archive/Signer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/Signer.cpp -------------------------------------------------------------------------------- /saco/archive/Signer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/Signer.h -------------------------------------------------------------------------------- /saco/archive/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/Stream.h -------------------------------------------------------------------------------- /saco/archive/TinyEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/TinyEncrypt.cpp -------------------------------------------------------------------------------- /saco/archive/TinyEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/archive/TinyEncrypt.h -------------------------------------------------------------------------------- /saco/audiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/audiostream.cpp -------------------------------------------------------------------------------- /saco/audiostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/audiostream.h -------------------------------------------------------------------------------- /saco/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/bass.h -------------------------------------------------------------------------------- /saco/bass.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/bass.lib -------------------------------------------------------------------------------- /saco/buildinfo.h: -------------------------------------------------------------------------------- 1 | #define SAMP_VERSION "0.3.7-R5" -------------------------------------------------------------------------------- /saco/chatwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/chatwindow.cpp -------------------------------------------------------------------------------- /saco/chatwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/chatwindow.h -------------------------------------------------------------------------------- /saco/checksums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/checksums.cpp -------------------------------------------------------------------------------- /saco/checksums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/checksums.h -------------------------------------------------------------------------------- /saco/cmdprocs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/cmdprocs.cpp -------------------------------------------------------------------------------- /saco/cmdwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/cmdwindow.cpp -------------------------------------------------------------------------------- /saco/cmdwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/cmdwindow.h -------------------------------------------------------------------------------- /saco/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/config.cpp -------------------------------------------------------------------------------- /saco/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/config.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUT.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUT.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTMesh.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTMesh.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTSettingsDlg.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTSettingsDlg.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTenum.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTenum.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTgui.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTgui.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTmisc.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTmisc.h -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTsound.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/DXUTsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/DXUTsound.h -------------------------------------------------------------------------------- /saco/d3d9/common/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/directx.ico -------------------------------------------------------------------------------- /saco/d3d9/common/dxstdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/dxstdafx.cpp -------------------------------------------------------------------------------- /saco/d3d9/common/dxstdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/common/dxstdafx.h -------------------------------------------------------------------------------- /saco/d3d9/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/d3d9.lib -------------------------------------------------------------------------------- /saco/d3d9/d3dutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/d3dutil.cpp -------------------------------------------------------------------------------- /saco/d3d9/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/d3dx9.lib -------------------------------------------------------------------------------- /saco/d3d9/dsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/dsound.lib -------------------------------------------------------------------------------- /saco/d3d9/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/dxguid.lib -------------------------------------------------------------------------------- /saco/d3d9/dxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/dxutil.cpp -------------------------------------------------------------------------------- /saco/d3d9/include/PIXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/PIXPlugin.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d8.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d8caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d8caps.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d8types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d8types.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d9.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d9caps.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3d9types.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dcaps.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dfont.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3drm.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3drmdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3drmdef.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3drmobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3drmobj.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3drmwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3drmwin.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dtypes.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dutil.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dvec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dvec.inl -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9.lib -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9anim.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9core.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9effect.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9math.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9math.inl -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9mesh.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9shader.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9shape.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9tex.h -------------------------------------------------------------------------------- /saco/d3d9/include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/d3dx9xof.h -------------------------------------------------------------------------------- /saco/d3d9/include/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/ddraw.h -------------------------------------------------------------------------------- /saco/d3d9/include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dinput.h -------------------------------------------------------------------------------- /saco/d3d9/include/dinputd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dinputd.h -------------------------------------------------------------------------------- /saco/d3d9/include/dls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dls1.h -------------------------------------------------------------------------------- /saco/d3d9/include/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dls2.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmdls.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmerror.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmksctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmksctrl.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmplugin.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmusbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmusbuff.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmusicc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmusicc.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmusicf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmusicf.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmusici.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmusici.h -------------------------------------------------------------------------------- /saco/d3d9/include/dmusics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dmusics.h -------------------------------------------------------------------------------- /saco/d3d9/include/dpaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dpaddr.h -------------------------------------------------------------------------------- /saco/d3d9/include/dplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dplay.h -------------------------------------------------------------------------------- /saco/d3d9/include/dplay8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dplay8.h -------------------------------------------------------------------------------- /saco/d3d9/include/dplobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dplobby.h -------------------------------------------------------------------------------- /saco/d3d9/include/dplobby8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dplobby8.h -------------------------------------------------------------------------------- /saco/d3d9/include/dpnathlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dpnathlp.h -------------------------------------------------------------------------------- /saco/d3d9/include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dsconf.h -------------------------------------------------------------------------------- /saco/d3d9/include/dsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dsetup.h -------------------------------------------------------------------------------- /saco/d3d9/include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dsound.h -------------------------------------------------------------------------------- /saco/d3d9/include/dvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dvoice.h -------------------------------------------------------------------------------- /saco/d3d9/include/dvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dvp.h -------------------------------------------------------------------------------- /saco/d3d9/include/dx7todx8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dx7todx8.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxdiag.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxerr8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxerr8.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxerr9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxerr9.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxfile.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxsdkver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxsdkver.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxtrans.h -------------------------------------------------------------------------------- /saco/d3d9/include/dxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/dxutil.h -------------------------------------------------------------------------------- /saco/d3d9/include/multimon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/multimon.h -------------------------------------------------------------------------------- /saco/d3d9/include/rmxfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/rmxfguid.h -------------------------------------------------------------------------------- /saco/d3d9/include/rmxftmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/rmxftmpl.h -------------------------------------------------------------------------------- /saco/d3d9/include/strsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3d9/include/strsafe.h -------------------------------------------------------------------------------- /saco/d3dhook/ID3DXFontHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3dhook/ID3DXFontHook.cpp -------------------------------------------------------------------------------- /saco/d3dhook/ID3DXFontHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3dhook/ID3DXFontHook.h -------------------------------------------------------------------------------- /saco/d3dhook/IDirect3DDevice9Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3dhook/IDirect3DDevice9Hook.cpp -------------------------------------------------------------------------------- /saco/d3dhook/IDirect3DDevice9Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/d3dhook/IDirect3DDevice9Hook.h -------------------------------------------------------------------------------- /saco/deathwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/deathwindow.cpp -------------------------------------------------------------------------------- /saco/deathwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/deathwindow.h -------------------------------------------------------------------------------- /saco/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/detours.h -------------------------------------------------------------------------------- /saco/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/detours.lib -------------------------------------------------------------------------------- /saco/exceptbox.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/exceptbox.rc -------------------------------------------------------------------------------- /saco/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/exceptions.cpp -------------------------------------------------------------------------------- /saco/fhicl-sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/fhicl-sha1.cpp -------------------------------------------------------------------------------- /saco/fhicl-sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/fhicl-sha1.h -------------------------------------------------------------------------------- /saco/filechecks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/filechecks.cpp -------------------------------------------------------------------------------- /saco/filechecks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/filechecks.h -------------------------------------------------------------------------------- /saco/filehooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/filehooks.cpp -------------------------------------------------------------------------------- /saco/filehooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/filehooks.h -------------------------------------------------------------------------------- /saco/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/filesystem.cpp -------------------------------------------------------------------------------- /saco/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/filesystem.h -------------------------------------------------------------------------------- /saco/fontrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/fontrender.cpp -------------------------------------------------------------------------------- /saco/fontrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/fontrender.h -------------------------------------------------------------------------------- /saco/game/actorped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/actorped.cpp -------------------------------------------------------------------------------- /saco/game/actorped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/actorped.h -------------------------------------------------------------------------------- /saco/game/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/address.h -------------------------------------------------------------------------------- /saco/game/aimstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/aimstuff.cpp -------------------------------------------------------------------------------- /saco/game/aimstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/aimstuff.h -------------------------------------------------------------------------------- /saco/game/animlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/animlist.cpp -------------------------------------------------------------------------------- /saco/game/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/audio.cpp -------------------------------------------------------------------------------- /saco/game/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/audio.h -------------------------------------------------------------------------------- /saco/game/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/camera.cpp -------------------------------------------------------------------------------- /saco/game/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/camera.h -------------------------------------------------------------------------------- /saco/game/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/cheats.cpp -------------------------------------------------------------------------------- /saco/game/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/common.h -------------------------------------------------------------------------------- /saco/game/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/entity.cpp -------------------------------------------------------------------------------- /saco/game/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/entity.h -------------------------------------------------------------------------------- /saco/game/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/font.cpp -------------------------------------------------------------------------------- /saco/game/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/font.h -------------------------------------------------------------------------------- /saco/game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/game.cpp -------------------------------------------------------------------------------- /saco/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/game.h -------------------------------------------------------------------------------- /saco/game/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/hooks.cpp -------------------------------------------------------------------------------- /saco/game/hudcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/hudcolor.cpp -------------------------------------------------------------------------------- /saco/game/hudcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/hudcolor.h -------------------------------------------------------------------------------- /saco/game/keystuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/keystuff.cpp -------------------------------------------------------------------------------- /saco/game/keystuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/keystuff.h -------------------------------------------------------------------------------- /saco/game/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/menu.cpp -------------------------------------------------------------------------------- /saco/game/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/menu.h -------------------------------------------------------------------------------- /saco/game/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/patches.cpp -------------------------------------------------------------------------------- /saco/game/playerped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/playerped.cpp -------------------------------------------------------------------------------- /saco/game/playerped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/playerped.h -------------------------------------------------------------------------------- /saco/game/rwstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/rwstuff.cpp -------------------------------------------------------------------------------- /saco/game/rwstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/rwstuff.h -------------------------------------------------------------------------------- /saco/game/scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/scripting.cpp -------------------------------------------------------------------------------- /saco/game/scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/scripting.h -------------------------------------------------------------------------------- /saco/game/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/task.cpp -------------------------------------------------------------------------------- /saco/game/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/task.h -------------------------------------------------------------------------------- /saco/game/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/textures.cpp -------------------------------------------------------------------------------- /saco/game/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/textures.h -------------------------------------------------------------------------------- /saco/game/unnamed_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/unnamed_1.cpp -------------------------------------------------------------------------------- /saco/game/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/util.cpp -------------------------------------------------------------------------------- /saco/game/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/util.h -------------------------------------------------------------------------------- /saco/game/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/vehicle.cpp -------------------------------------------------------------------------------- /saco/game/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/game/vehicle.h -------------------------------------------------------------------------------- /saco/helpdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/helpdialog.cpp -------------------------------------------------------------------------------- /saco/helpdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/helpdialog.h -------------------------------------------------------------------------------- /saco/httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/httpclient.cpp -------------------------------------------------------------------------------- /saco/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/httpclient.h -------------------------------------------------------------------------------- /saco/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/label.cpp -------------------------------------------------------------------------------- /saco/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/label.h -------------------------------------------------------------------------------- /saco/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/main.cpp -------------------------------------------------------------------------------- /saco/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/main.h -------------------------------------------------------------------------------- /saco/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/md5.cpp -------------------------------------------------------------------------------- /saco/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/md5.h -------------------------------------------------------------------------------- /saco/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/mod.h -------------------------------------------------------------------------------- /saco/net/actorpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/actorpool.cpp -------------------------------------------------------------------------------- /saco/net/actorpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/actorpool.h -------------------------------------------------------------------------------- /saco/net/gangzonepool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/gangzonepool.cpp -------------------------------------------------------------------------------- /saco/net/gangzonepool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/gangzonepool.h -------------------------------------------------------------------------------- /saco/net/labelpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/labelpool.cpp -------------------------------------------------------------------------------- /saco/net/labelpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/labelpool.h -------------------------------------------------------------------------------- /saco/net/localplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/localplayer.cpp -------------------------------------------------------------------------------- /saco/net/localplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/localplayer.h -------------------------------------------------------------------------------- /saco/net/menupool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/menupool.cpp -------------------------------------------------------------------------------- /saco/net/menupool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/menupool.h -------------------------------------------------------------------------------- /saco/net/netgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/netgame.cpp -------------------------------------------------------------------------------- /saco/net/netgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/netgame.h -------------------------------------------------------------------------------- /saco/net/netplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/netplayer.cpp -------------------------------------------------------------------------------- /saco/net/netplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/netplayer.h -------------------------------------------------------------------------------- /saco/net/netrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/netrpc.cpp -------------------------------------------------------------------------------- /saco/net/netrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/netrpc.h -------------------------------------------------------------------------------- /saco/net/objectpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/objectpool.cpp -------------------------------------------------------------------------------- /saco/net/objectpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/objectpool.h -------------------------------------------------------------------------------- /saco/net/pickuppool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/pickuppool.cpp -------------------------------------------------------------------------------- /saco/net/pickuppool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/pickuppool.h -------------------------------------------------------------------------------- /saco/net/playerpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/playerpool.cpp -------------------------------------------------------------------------------- /saco/net/playerpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/playerpool.h -------------------------------------------------------------------------------- /saco/net/remoteplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/remoteplayer.cpp -------------------------------------------------------------------------------- /saco/net/remoteplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/remoteplayer.h -------------------------------------------------------------------------------- /saco/net/scriptrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/scriptrpc.cpp -------------------------------------------------------------------------------- /saco/net/scriptrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/scriptrpc.h -------------------------------------------------------------------------------- /saco/net/textdrawpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/textdrawpool.cpp -------------------------------------------------------------------------------- /saco/net/textdrawpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/textdrawpool.h -------------------------------------------------------------------------------- /saco/net/vehiclepool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/vehiclepool.cpp -------------------------------------------------------------------------------- /saco/net/vehiclepool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/net/vehiclepool.h -------------------------------------------------------------------------------- /saco/netstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/netstats.cpp -------------------------------------------------------------------------------- /saco/netstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/netstats.h -------------------------------------------------------------------------------- /saco/newplayertags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/newplayertags.cpp -------------------------------------------------------------------------------- /saco/newplayertags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/newplayertags.h -------------------------------------------------------------------------------- /saco/outputdebugstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/outputdebugstring.h -------------------------------------------------------------------------------- /saco/playertags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/playertags.cpp -------------------------------------------------------------------------------- /saco/playertags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/playertags.h -------------------------------------------------------------------------------- /saco/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/resource.h -------------------------------------------------------------------------------- /saco/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/resource1.h -------------------------------------------------------------------------------- /saco/runutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/runutil.cpp -------------------------------------------------------------------------------- /saco/runutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/runutil.h -------------------------------------------------------------------------------- /saco/saco.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/saco.rc -------------------------------------------------------------------------------- /saco/saco.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/saco.vcproj -------------------------------------------------------------------------------- /saco/scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/scoreboard.cpp -------------------------------------------------------------------------------- /saco/scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/scoreboard.h -------------------------------------------------------------------------------- /saco/spawnscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/spawnscreen.cpp -------------------------------------------------------------------------------- /saco/spawnscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/spawnscreen.h -------------------------------------------------------------------------------- /saco/subclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/subclass.cpp -------------------------------------------------------------------------------- /saco/svrnetstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/svrnetstats.cpp -------------------------------------------------------------------------------- /saco/svrnetstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/svrnetstats.h -------------------------------------------------------------------------------- /saco/unkclass10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass10.cpp -------------------------------------------------------------------------------- /saco/unkclass10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass10.h -------------------------------------------------------------------------------- /saco/unkclass11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass11.cpp -------------------------------------------------------------------------------- /saco/unkclass11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass11.h -------------------------------------------------------------------------------- /saco/unkclass12.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "main.h" 3 | -------------------------------------------------------------------------------- /saco/unkclass12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass12.h -------------------------------------------------------------------------------- /saco/unkclass13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass13.cpp -------------------------------------------------------------------------------- /saco/unkclass13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass13.h -------------------------------------------------------------------------------- /saco/unkclass14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass14.cpp -------------------------------------------------------------------------------- /saco/unkclass14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass14.h -------------------------------------------------------------------------------- /saco/unkclass15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass15.cpp -------------------------------------------------------------------------------- /saco/unkclass15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass15.h -------------------------------------------------------------------------------- /saco/unkclass3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass3.cpp -------------------------------------------------------------------------------- /saco/unkclass3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass3.h -------------------------------------------------------------------------------- /saco/unkclass4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass4.cpp -------------------------------------------------------------------------------- /saco/unkclass4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass4.h -------------------------------------------------------------------------------- /saco/unkclass5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass5.cpp -------------------------------------------------------------------------------- /saco/unkclass5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass5.h -------------------------------------------------------------------------------- /saco/unkclass8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass8.cpp -------------------------------------------------------------------------------- /saco/unkclass8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/saco/unkclass8.h -------------------------------------------------------------------------------- /scm/SASCM.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/scm/SASCM.INI -------------------------------------------------------------------------------- /scm/main.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/scm/main.scm -------------------------------------------------------------------------------- /scm/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/scm/main.txt -------------------------------------------------------------------------------- /scm/script.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/scm/script.img -------------------------------------------------------------------------------- /server/actorpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/actorpool.cpp -------------------------------------------------------------------------------- /server/actorpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/actorpool.h -------------------------------------------------------------------------------- /server/amx/amx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amx.c -------------------------------------------------------------------------------- /server/amx/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amx.h -------------------------------------------------------------------------------- /server/amx/amxDGram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxDGram.c -------------------------------------------------------------------------------- /server/amx/amxcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxcons.c -------------------------------------------------------------------------------- /server/amx/amxcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxcore.c -------------------------------------------------------------------------------- /server/amx/amxdefn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxdefn.asm -------------------------------------------------------------------------------- /server/amx/amxexecn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxexecn.asm -------------------------------------------------------------------------------- /server/amx/amxfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxfile.c -------------------------------------------------------------------------------- /server/amx/amxfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxfloat.c -------------------------------------------------------------------------------- /server/amx/amxstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxstring.c -------------------------------------------------------------------------------- /server/amx/amxtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/amxtime.c -------------------------------------------------------------------------------- /server/amx/getch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/getch.c -------------------------------------------------------------------------------- /server/amx/getch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/getch.h -------------------------------------------------------------------------------- /server/amx/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/osdefs.h -------------------------------------------------------------------------------- /server/amx/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/prefix.c -------------------------------------------------------------------------------- /server/amx/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/prefix.h -------------------------------------------------------------------------------- /server/amx/sclinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/amx/sclinux.h -------------------------------------------------------------------------------- /server/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/console.cpp -------------------------------------------------------------------------------- /server/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/console.h -------------------------------------------------------------------------------- /server/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/exceptions.cpp -------------------------------------------------------------------------------- /server/filterscripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/filterscripts.cpp -------------------------------------------------------------------------------- /server/filterscripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/filterscripts.h -------------------------------------------------------------------------------- /server/format.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/format.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/gamemodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/gamemodes.cpp -------------------------------------------------------------------------------- /server/gamemodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/gamemodes.h -------------------------------------------------------------------------------- /server/gangzonepool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/gangzonepool.cpp -------------------------------------------------------------------------------- /server/gangzonepool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/gangzonepool.h -------------------------------------------------------------------------------- /server/labelpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/labelpool.cpp -------------------------------------------------------------------------------- /server/labelpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/labelpool.h -------------------------------------------------------------------------------- /server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/main.cpp -------------------------------------------------------------------------------- /server/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/main.h -------------------------------------------------------------------------------- /server/mathutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/mathutils.cpp -------------------------------------------------------------------------------- /server/mathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/mathutils.h -------------------------------------------------------------------------------- /server/menupool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/menupool.cpp -------------------------------------------------------------------------------- /server/menupool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/menupool.h -------------------------------------------------------------------------------- /server/netgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/netgame.cpp -------------------------------------------------------------------------------- /server/netgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/netgame.h -------------------------------------------------------------------------------- /server/netrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/netrpc.cpp -------------------------------------------------------------------------------- /server/netrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/netrpc.h -------------------------------------------------------------------------------- /server/objectpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/objectpool.cpp -------------------------------------------------------------------------------- /server/objectpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/objectpool.h -------------------------------------------------------------------------------- /server/pickuppool.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/pickuppool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/pickuppool.h -------------------------------------------------------------------------------- /server/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/player.cpp -------------------------------------------------------------------------------- /server/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/player.h -------------------------------------------------------------------------------- /server/playerpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/playerpool.cpp -------------------------------------------------------------------------------- /server/playerpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/playerpool.h -------------------------------------------------------------------------------- /server/plugincommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/plugincommon.h -------------------------------------------------------------------------------- /server/plugininternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/plugininternal.h -------------------------------------------------------------------------------- /server/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/plugins.cpp -------------------------------------------------------------------------------- /server/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/plugins.h -------------------------------------------------------------------------------- /server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/resource.h -------------------------------------------------------------------------------- /server/runutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/runutil.cpp -------------------------------------------------------------------------------- /server/runutil.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/scrcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/scrcore.cpp -------------------------------------------------------------------------------- /server/scrcustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/scrcustom.cpp -------------------------------------------------------------------------------- /server/scrhttps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/scrhttps.cpp -------------------------------------------------------------------------------- /server/scrhttps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/scrhttps.h -------------------------------------------------------------------------------- /server/scrtimers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/scrtimers.cpp -------------------------------------------------------------------------------- /server/scrtimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/scrtimers.h -------------------------------------------------------------------------------- /server/server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/server.rc -------------------------------------------------------------------------------- /server/server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/server.sln -------------------------------------------------------------------------------- /server/server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/server.vcproj -------------------------------------------------------------------------------- /server/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/sqlite/sqlite3.c -------------------------------------------------------------------------------- /server/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/sqlite/sqlite3.h -------------------------------------------------------------------------------- /server/sqlite/sqlite_amx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/sqlite/sqlite_amx.cpp -------------------------------------------------------------------------------- /server/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/system.h -------------------------------------------------------------------------------- /server/textdrawpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/textdrawpool.cpp -------------------------------------------------------------------------------- /server/textdrawpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/textdrawpool.h -------------------------------------------------------------------------------- /server/vehiclepool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/vehiclepool.cpp -------------------------------------------------------------------------------- /server/vehiclepool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/server/vehiclepool.h -------------------------------------------------------------------------------- /ttmath/ttmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmath.h -------------------------------------------------------------------------------- /ttmath/ttmathbig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathbig.h -------------------------------------------------------------------------------- /ttmath/ttmathint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathint.h -------------------------------------------------------------------------------- /ttmath/ttmathmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathmisc.h -------------------------------------------------------------------------------- /ttmath/ttmathobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathobjects.h -------------------------------------------------------------------------------- /ttmath/ttmathparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathparser.h -------------------------------------------------------------------------------- /ttmath/ttmaththreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmaththreads.h -------------------------------------------------------------------------------- /ttmath/ttmathtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathtypes.h -------------------------------------------------------------------------------- /ttmath/ttmathuint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathuint.h -------------------------------------------------------------------------------- /ttmath/ttmathuint_noasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathuint_noasm.h -------------------------------------------------------------------------------- /ttmath/ttmathuint_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathuint_x86.h -------------------------------------------------------------------------------- /ttmath/ttmathuint_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathuint_x86_64.h -------------------------------------------------------------------------------- /ttmath/ttmathuint_x86_64_msvc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashr9230/SA-MP/HEAD/ttmath/ttmathuint_x86_64_msvc.asm --------------------------------------------------------------------------------