├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── docker ├── .DS_Store ├── build │ ├── Dockerfile │ ├── build.sh │ └── docker-entrypoint.sh ├── run.sh └── server │ ├── Dockerfile │ ├── docker-entrypoint.sh │ ├── empty.amx │ ├── empty.pwn │ ├── empty.py │ └── server.cfg.template ├── gamemodes ├── grandlarc │ ├── __init__.py │ ├── funcs.py │ ├── player.py │ ├── spawns.py │ └── vars.py └── scriptfiles │ └── vehicles │ └── vehicles │ ├── bone.txt │ ├── flint.txt │ ├── ls_airport.txt │ ├── ls_gen_inner.txt │ ├── ls_gen_outer.txt │ ├── ls_law.txt │ ├── lv_airport.txt │ ├── lv_gen.txt │ ├── lv_law.txt │ ├── pilots.txt │ ├── red_county.txt │ ├── sf_airport.txt │ ├── sf_gen.txt │ ├── sf_law.txt │ ├── sf_train.txt │ ├── tierra.txt │ ├── trains.txt │ ├── trains_platform.txt │ └── whetstone.txt ├── pysamp ├── __init__.py ├── actor.py ├── callbacks │ ├── __init__.py │ ├── _path_hook.py │ └── names.py ├── commands.py ├── dialog.py ├── docs │ ├── Makefile │ ├── actor.rst │ ├── conf.py │ ├── dialog.rst │ ├── index.rst │ ├── menu.rst │ ├── modules.rst │ ├── object.rst │ ├── pickup.rst │ ├── player.rst │ ├── playerobject.rst │ ├── playertextdraw.rst │ ├── textdraw.rst │ ├── textlabel.rst │ └── vehicle.rst ├── event.py ├── gangzone.py ├── menu.py ├── object.py ├── pickup.py ├── player.py ├── playerobject.py ├── playertextdraw.py ├── textdraw.py ├── textlabel.py ├── timer.py └── vehicle.py ├── requirements.txt ├── samp └── __init__.pyi ├── scripts ├── APIGenerator.py ├── FunctionGenerator.py ├── constants.txt ├── cpp │ └── tests.txt ├── functions.h ├── functions │ ├── callbacks.txt │ └── functions.txt ├── idl │ ├── a_actor.idl │ ├── a_http.idl │ ├── a_objects.idl │ ├── a_players.idl │ ├── a_samp.idl │ ├── a_vehicles.idl │ └── callbacks.idl ├── json │ ├── AddMenuItem.txt │ ├── AddPlayerClass.txt │ ├── AddPlayerClassEx.txt │ ├── AddStaticPickup.txt │ ├── AddStaticVehicle.txt │ ├── AddStaticVehicleEx.txt │ ├── AddVehicleComponent.txt │ ├── AllowAdminTeleport.txt │ ├── AllowInteriorWeapons.txt │ ├── AllowPlayerTeleport.txt │ ├── ApplyActorAnimation.txt │ ├── ApplyAnimation.txt │ ├── AttachCameraToObject.txt │ ├── AttachCameraToPlayerObject.txt │ ├── AttachObjectToObject.txt │ ├── AttachObjectToPlayer.txt │ ├── AttachObjectToVehicle.txt │ ├── AttachPlayerObjectToPlayer.txt │ ├── AttachPlayerObjectToVehicle.txt │ ├── AttachTrailerToVehicle.txt │ ├── Ban.txt │ ├── BanEx.txt │ ├── BlockIpAddress.txt │ ├── CancelEdit.txt │ ├── CancelSelectTextDraw.txt │ ├── ChangeVehicleColor.txt │ ├── ChangeVehiclePaintjob.txt │ ├── ClearActorAnimations.txt │ ├── ClearAnimations.txt │ ├── ConnectNPC.txt │ ├── CreateActor.txt │ ├── CreateExplosion.txt │ ├── CreateExplosionForPlayer.txt │ ├── CreateMenu.txt │ ├── CreateObject.txt │ ├── CreatePickup.txt │ ├── CreatePlayerObject.txt │ ├── CreatePlayerTextDraw.txt │ ├── CreateVehicle.txt │ ├── DeletePVar.txt │ ├── DeleteSVar.txt │ ├── DestroyActor.txt │ ├── DestroyMenu.txt │ ├── DestroyObject.txt │ ├── DestroyPickup.txt │ ├── DestroyPlayerObject.txt │ ├── DestroyVehicle.txt │ ├── DetachTrailerFromVehicle.txt │ ├── DisableInteriorEnterExits.txt │ ├── DisableMenu.txt │ ├── DisableMenuRow.txt │ ├── DisableNameTagLOS.txt │ ├── DisablePlayerCheckpoint.txt │ ├── DisablePlayerRaceCheckpoint.txt │ ├── DisableRemoteVehicleCollisions.txt │ ├── EditAttachedObject.txt │ ├── EditObject.txt │ ├── EditPlayerObject.txt │ ├── EnablePlayerCameraTarget.txt │ ├── EnableStuntBonusForAll.txt │ ├── EnableStuntBonusForPlayer.txt │ ├── EnableTirePopping.txt │ ├── EnableVehicleFriendlyFire.txt │ ├── EnableZoneNames.txt │ ├── ForceClassSelection.txt │ ├── GameModeExit.txt │ ├── GameTextForAll.txt │ ├── GameTextForPlayer.txt │ ├── GangZoneCreate.txt │ ├── GangZoneDestroy.txt │ ├── GangZoneFlashForAll.txt │ ├── GangZoneFlashForPlayer.txt │ ├── GangZoneHideForAll.txt │ ├── GangZoneHideForPlayer.txt │ ├── GangZoneShowForAll.txt │ ├── GangZoneShowForPlayer.txt │ ├── GangZoneStopFlashForAll.txt │ ├── GangZoneStopFlashForPlayer.txt │ ├── GetActorFacingAngle.txt │ ├── GetActorHealth.txt │ ├── GetActorPoolSize.txt │ ├── GetActorPos.txt │ ├── GetActorVirtualWorld.txt │ ├── GetAnimationName.txt │ ├── GetConsoleVarAsBool.txt │ ├── GetConsoleVarAsInt.txt │ ├── GetConsoleVarAsString.txt │ ├── GetGravity.txt │ ├── GetMaxPlayers.txt │ ├── GetNetworkStats.txt │ ├── GetObjectModel.txt │ ├── GetObjectPos.txt │ ├── GetObjectRot.txt │ ├── GetPVarFloat.txt │ ├── GetPVarInt.txt │ ├── GetPVarNameAtIndex.txt │ ├── GetPVarString.txt │ ├── GetPVarType.txt │ ├── GetPVarsUpperIndex.txt │ ├── GetPlayerAmmo.txt │ ├── GetPlayerAnimationIndex.txt │ ├── GetPlayerArmour.txt │ ├── GetPlayerCameraAspectRatio.txt │ ├── GetPlayerCameraFrontVector.txt │ ├── GetPlayerCameraMode.txt │ ├── GetPlayerCameraPos.txt │ ├── GetPlayerCameraTargetActor.txt │ ├── GetPlayerCameraTargetObject.txt │ ├── GetPlayerCameraTargetPlayer.txt │ ├── GetPlayerCameraTargetVehicle.txt │ ├── GetPlayerCameraZoom.txt │ ├── GetPlayerColor.txt │ ├── GetPlayerDistanceFromPoint.txt │ ├── GetPlayerDrunkLevel.txt │ ├── GetPlayerFacingAngle.txt │ ├── GetPlayerFightingStyle.txt │ ├── GetPlayerHealth.txt │ ├── GetPlayerInterior.txt │ ├── GetPlayerIp.txt │ ├── GetPlayerKeys.txt │ ├── GetPlayerLastShotVectors.txt │ ├── GetPlayerMenu.txt │ ├── GetPlayerMoney.txt │ ├── GetPlayerName.txt │ ├── GetPlayerNetworkStats.txt │ ├── GetPlayerObjectModel.txt │ ├── GetPlayerObjectPos.txt │ ├── GetPlayerObjectRot.txt │ ├── GetPlayerPing.txt │ ├── GetPlayerPoolSize.txt │ ├── GetPlayerPos.txt │ ├── GetPlayerScore.txt │ ├── GetPlayerSkin.txt │ ├── GetPlayerSpecialAction.txt │ ├── GetPlayerState.txt │ ├── GetPlayerSurfingObjectID.txt │ ├── GetPlayerSurfingVehicleID.txt │ ├── GetPlayerTargetActor.txt │ ├── GetPlayerTargetPlayer.txt │ ├── GetPlayerTeam.txt │ ├── GetPlayerTime.txt │ ├── GetPlayerVehicleID.txt │ ├── GetPlayerVehicleSeat.txt │ ├── GetPlayerVelocity.txt │ ├── GetPlayerVersion.txt │ ├── GetPlayerVirtualWorld.txt │ ├── GetPlayerWantedLevel.txt │ ├── GetPlayerWeapon.txt │ ├── GetPlayerWeaponData.txt │ ├── GetPlayerWeaponState.txt │ ├── GetSVarFloat.txt │ ├── GetSVarInt.txt │ ├── GetSVarNameAtIndex.txt │ ├── GetSVarString.txt │ ├── GetSVarType.txt │ ├── GetSVarsUpperIndex.txt │ ├── GetServerTickRate.txt │ ├── GetServerVarAsBool.txt │ ├── GetServerVarAsInt.txt │ ├── GetServerVarAsString.txt │ ├── GetTickCount.txt │ ├── GetVehicleComponentInSlot.txt │ ├── GetVehicleComponentType.txt │ ├── GetVehicleDamageStatus.txt │ ├── GetVehicleDistanceFromPoint.txt │ ├── GetVehicleHealth.txt │ ├── GetVehicleModel.txt │ ├── GetVehicleModelInfo.txt │ ├── GetVehicleParamsCarDoors.txt │ ├── GetVehicleParamsCarWindows.txt │ ├── GetVehicleParamsEx.txt │ ├── GetVehicleParamsSirenState.txt │ ├── GetVehiclePoolSize.txt │ ├── GetVehiclePos.txt │ ├── GetVehicleRotationQuat.txt │ ├── GetVehicleTrailer.txt │ ├── GetVehicleVelocity.txt │ ├── GetVehicleVirtualWorld.txt │ ├── GetVehicleZAngle.txt │ ├── GetWeaponName.txt │ ├── GivePlayerMoney.txt │ ├── GivePlayerWeapon.txt │ ├── HideMenuForPlayer.txt │ ├── InterpolateCameraLookAt.txt │ ├── InterpolateCameraPos.txt │ ├── IsActorInvulnerable.txt │ ├── IsActorStreamedIn.txt │ ├── IsObjectMoving.txt │ ├── IsPlayerAdmin.txt │ ├── IsPlayerAttachedObjectSlotUsed.txt │ ├── IsPlayerConnected.txt │ ├── IsPlayerInAnyVehicle.txt │ ├── IsPlayerInCheckpoint.txt │ ├── IsPlayerInRaceCheckpoint.txt │ ├── IsPlayerInRangeOfPoint.txt │ ├── IsPlayerInVehicle.txt │ ├── IsPlayerNPC.txt │ ├── IsPlayerObjectMoving.txt │ ├── IsPlayerStreamedIn.txt │ ├── IsTrailerAttachedToVehicle.txt │ ├── IsValidActor.txt │ ├── IsValidMenu.txt │ ├── IsValidObject.txt │ ├── IsValidPlayerObject.txt │ ├── IsValidVehicle.txt │ ├── IsVehicleStreamedIn.txt │ ├── Kick.txt │ ├── LimitGlobalChatRadius.txt │ ├── LimitPlayerMarkerRadius.txt │ ├── LinkVehicleToInterior.txt │ ├── ManualVehicleEngineAndLights.txt │ ├── MoveObject.txt │ ├── MovePlayerObject.txt │ ├── NetStats_BytesReceived.txt │ ├── NetStats_BytesSent.txt │ ├── NetStats_ConnectionStatus.txt │ ├── NetStats_GetConnectedTime.txt │ ├── NetStats_GetIpPort.txt │ ├── NetStats_MessagesReceived.txt │ ├── NetStats_MessagesRecvPerSecond.txt │ ├── NetStats_MessagesSent.txt │ ├── NetStats_PacketLossPercent.txt │ ├── PlayAudioStreamForPlayer.txt │ ├── PlayCrimeReportForPlayer.txt │ ├── PlayerPlaySound.txt │ ├── PlayerSpectatePlayer.txt │ ├── PlayerSpectateVehicle.txt │ ├── PlayerTextDrawAlignment.txt │ ├── PlayerTextDrawBackgroundColor.txt │ ├── PlayerTextDrawBoxColor.txt │ ├── PlayerTextDrawColor.txt │ ├── PlayerTextDrawDestroy.txt │ ├── PlayerTextDrawFont.txt │ ├── PlayerTextDrawHide.txt │ ├── PlayerTextDrawLetterSize.txt │ ├── PlayerTextDrawSetOutline.txt │ ├── PlayerTextDrawSetPreviewModel.txt │ ├── PlayerTextDrawSetPreviewRot.txt │ ├── PlayerTextDrawSetPreviewVehCol.txt │ ├── PlayerTextDrawSetProportional.txt │ ├── PlayerTextDrawSetSelectable.txt │ ├── PlayerTextDrawSetShadow.txt │ ├── PlayerTextDrawSetString.txt │ ├── PlayerTextDrawShow.txt │ ├── PlayerTextDrawTextSize.txt │ ├── PlayerTextDrawUseBox.txt │ ├── PutPlayerInVehicle.txt │ ├── RemoveBuildingForPlayer.txt │ ├── RemovePlayerAttachedObject.txt │ ├── RemovePlayerFromVehicle.txt │ ├── RemovePlayerMapIcon.txt │ ├── RemoveVehicleComponent.txt │ ├── RepairVehicle.txt │ ├── ResetPlayerMoney.txt │ ├── ResetPlayerWeapons.txt │ ├── SelectObject.txt │ ├── SelectTextDraw.txt │ ├── SendClientMessage.txt │ ├── SendClientMessageToAll.txt │ ├── SendDeathMessage.txt │ ├── SendDeathMessageToPlayer.txt │ ├── SendPlayerMessageToAll.txt │ ├── SendPlayerMessageToPlayer.txt │ ├── SendRconCommand.txt │ ├── SetActorFacingAngle.txt │ ├── SetActorHealth.txt │ ├── SetActorInvulnerable.txt │ ├── SetActorPos.txt │ ├── SetActorVirtualWorld.txt │ ├── SetCameraBehindPlayer.txt │ ├── SetDeathDropAmount.txt │ ├── SetGameModeText.txt │ ├── SetGravity.txt │ ├── SetMenuColumnHeader.txt │ ├── SetNameTagDrawDistance.txt │ ├── SetObjectMaterial.txt │ ├── SetObjectMaterialText.txt │ ├── SetObjectNoCameraCol.txt │ ├── SetObjectPos.txt │ ├── SetObjectRot.txt │ ├── SetObjectsDefaultCameraCol.txt │ ├── SetPVarFloat.txt │ ├── SetPVarInt.txt │ ├── SetPVarString.txt │ ├── SetPlayerAmmo.txt │ ├── SetPlayerArmedWeapon.txt │ ├── SetPlayerArmour.txt │ ├── SetPlayerAttachedObject.txt │ ├── SetPlayerCameraLookAt.txt │ ├── SetPlayerCameraPos.txt │ ├── SetPlayerChatBubble.txt │ ├── SetPlayerCheckpoint.txt │ ├── SetPlayerColor.txt │ ├── SetPlayerDrunkLevel.txt │ ├── SetPlayerFacingAngle.txt │ ├── SetPlayerFightingStyle.txt │ ├── SetPlayerHealth.txt │ ├── SetPlayerInterior.txt │ ├── SetPlayerMapIcon.txt │ ├── SetPlayerMarkerForPlayer.txt │ ├── SetPlayerName.txt │ ├── SetPlayerObjectMaterial.txt │ ├── SetPlayerObjectMaterialText.txt │ ├── SetPlayerObjectNoCameraCol.txt │ ├── SetPlayerObjectPos.txt │ ├── SetPlayerObjectRot.txt │ ├── SetPlayerPos.txt │ ├── SetPlayerPosFindZ.txt │ ├── SetPlayerRaceCheckpoint.txt │ ├── SetPlayerScore.txt │ ├── SetPlayerShopName.txt │ ├── SetPlayerSkillLevel.txt │ ├── SetPlayerSkin.txt │ ├── SetPlayerSpecialAction.txt │ ├── SetPlayerTeam.txt │ ├── SetPlayerTime.txt │ ├── SetPlayerVelocity.txt │ ├── SetPlayerVirtualWorld.txt │ ├── SetPlayerWantedLevel.txt │ ├── SetPlayerWeather.txt │ ├── SetPlayerWorldBounds.txt │ ├── SetSVarFloat.txt │ ├── SetSVarInt.txt │ ├── SetSVarString.txt │ ├── SetSpawnInfo.txt │ ├── SetTeamCount.txt │ ├── SetVehicleAngularVelocity.txt │ ├── SetVehicleHealth.txt │ ├── SetVehicleNumberPlate.txt │ ├── SetVehicleParamsCarDoors.txt │ ├── SetVehicleParamsCarWindows.txt │ ├── SetVehicleParamsEx.txt │ ├── SetVehicleParamsForPlayer.txt │ ├── SetVehiclePos.txt │ ├── SetVehicleToRespawn.txt │ ├── SetVehicleVelocity.txt │ ├── SetVehicleVirtualWorld.txt │ ├── SetVehicleZAngle.txt │ ├── SetWeather.txt │ ├── SetWorldTime.txt │ ├── ShowMenuForPlayer.txt │ ├── ShowNameTags.txt │ ├── ShowPlayerDialog.txt │ ├── ShowPlayerMarkers.txt │ ├── ShowPlayerNameTagForPlayer.txt │ ├── SpawnPlayer.txt │ ├── StartRecordingPlayerData.txt │ ├── StopAudioStreamForPlayer.txt │ ├── StopObject.txt │ ├── StopPlayerObject.txt │ ├── StopRecordingPlayerData.txt │ ├── TextDrawAlignment.txt │ ├── TextDrawBackgroundColor.txt │ ├── TextDrawBoxColor.txt │ ├── TextDrawColor.txt │ ├── TextDrawCreate.txt │ ├── TextDrawDestroy.txt │ ├── TextDrawFont.txt │ ├── TextDrawHideForAll.txt │ ├── TextDrawHideForPlayer.txt │ ├── TextDrawLetterSize.txt │ ├── TextDrawSetOutline.txt │ ├── TextDrawSetPreviewModel.txt │ ├── TextDrawSetPreviewRot.txt │ ├── TextDrawSetPreviewVehCol.txt │ ├── TextDrawSetProportional.txt │ ├── TextDrawSetSelectable.txt │ ├── TextDrawSetShadow.txt │ ├── TextDrawSetString.txt │ ├── TextDrawShowForAll.txt │ ├── TextDrawShowForPlayer.txt │ ├── TextDrawTextSize.txt │ ├── TextDrawUseBox.txt │ ├── TogglePlayerClock.txt │ ├── TogglePlayerControllable.txt │ ├── TogglePlayerSpectating.txt │ ├── UnBlockIpAddress.txt │ ├── UpdateVehicleDamageStatus.txt │ ├── UsePlayerPedAnims.txt │ ├── VectorSize.txt │ └── gpci.txt ├── setup_workspace.bat └── setup_workspace.sh └── src ├── CMakeLists.txt ├── Doxyfile.in ├── bindings ├── logprintf.cpp ├── logprintf.h ├── samp.cpp └── samp.h ├── config.h.in ├── limited_api_python.h ├── main.cpp ├── main.def ├── main.h └── pysamp ├── callbacks.cpp ├── callbacks.h ├── param_converter.cpp ├── param_converter.h ├── pygamemode.cpp ├── pygamemode.h ├── pysamp.cpp ├── pysamp.h ├── timer.cpp └── timer.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/_config.yml -------------------------------------------------------------------------------- /docker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/.DS_Store -------------------------------------------------------------------------------- /docker/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/build/Dockerfile -------------------------------------------------------------------------------- /docker/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/build/build.sh -------------------------------------------------------------------------------- /docker/build/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/build/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/run.sh -------------------------------------------------------------------------------- /docker/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/server/Dockerfile -------------------------------------------------------------------------------- /docker/server/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/server/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/server/empty.amx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/server/empty.amx -------------------------------------------------------------------------------- /docker/server/empty.pwn: -------------------------------------------------------------------------------- 1 | main(){} 2 | -------------------------------------------------------------------------------- /docker/server/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/server/empty.py -------------------------------------------------------------------------------- /docker/server/server.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/docker/server/server.cfg.template -------------------------------------------------------------------------------- /gamemodes/grandlarc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/grandlarc/__init__.py -------------------------------------------------------------------------------- /gamemodes/grandlarc/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/grandlarc/funcs.py -------------------------------------------------------------------------------- /gamemodes/grandlarc/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/grandlarc/player.py -------------------------------------------------------------------------------- /gamemodes/grandlarc/spawns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/grandlarc/spawns.py -------------------------------------------------------------------------------- /gamemodes/grandlarc/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/grandlarc/vars.py -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/bone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/bone.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/flint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/flint.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/ls_airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/ls_airport.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/ls_gen_inner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/ls_gen_inner.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/ls_gen_outer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/ls_gen_outer.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/ls_law.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/ls_law.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/lv_airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/lv_airport.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/lv_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/lv_gen.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/lv_law.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/lv_law.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/pilots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/pilots.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/red_county.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/red_county.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/sf_airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/sf_airport.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/sf_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/sf_gen.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/sf_law.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/sf_law.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/sf_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/sf_train.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/tierra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/tierra.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/trains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/trains.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/trains_platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/trains_platform.txt -------------------------------------------------------------------------------- /gamemodes/scriptfiles/vehicles/vehicles/whetstone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/gamemodes/scriptfiles/vehicles/vehicles/whetstone.txt -------------------------------------------------------------------------------- /pysamp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/__init__.py -------------------------------------------------------------------------------- /pysamp/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/actor.py -------------------------------------------------------------------------------- /pysamp/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/callbacks/__init__.py -------------------------------------------------------------------------------- /pysamp/callbacks/_path_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/callbacks/_path_hook.py -------------------------------------------------------------------------------- /pysamp/callbacks/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/callbacks/names.py -------------------------------------------------------------------------------- /pysamp/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/commands.py -------------------------------------------------------------------------------- /pysamp/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/dialog.py -------------------------------------------------------------------------------- /pysamp/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/Makefile -------------------------------------------------------------------------------- /pysamp/docs/actor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/actor.rst -------------------------------------------------------------------------------- /pysamp/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/conf.py -------------------------------------------------------------------------------- /pysamp/docs/dialog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/dialog.rst -------------------------------------------------------------------------------- /pysamp/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/index.rst -------------------------------------------------------------------------------- /pysamp/docs/menu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/menu.rst -------------------------------------------------------------------------------- /pysamp/docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/modules.rst -------------------------------------------------------------------------------- /pysamp/docs/object.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/object.rst -------------------------------------------------------------------------------- /pysamp/docs/pickup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/pickup.rst -------------------------------------------------------------------------------- /pysamp/docs/player.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/player.rst -------------------------------------------------------------------------------- /pysamp/docs/playerobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/playerobject.rst -------------------------------------------------------------------------------- /pysamp/docs/playertextdraw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/playertextdraw.rst -------------------------------------------------------------------------------- /pysamp/docs/textdraw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/textdraw.rst -------------------------------------------------------------------------------- /pysamp/docs/textlabel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/textlabel.rst -------------------------------------------------------------------------------- /pysamp/docs/vehicle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/docs/vehicle.rst -------------------------------------------------------------------------------- /pysamp/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/event.py -------------------------------------------------------------------------------- /pysamp/gangzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/gangzone.py -------------------------------------------------------------------------------- /pysamp/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/menu.py -------------------------------------------------------------------------------- /pysamp/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/object.py -------------------------------------------------------------------------------- /pysamp/pickup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/pickup.py -------------------------------------------------------------------------------- /pysamp/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/player.py -------------------------------------------------------------------------------- /pysamp/playerobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/playerobject.py -------------------------------------------------------------------------------- /pysamp/playertextdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/playertextdraw.py -------------------------------------------------------------------------------- /pysamp/textdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/textdraw.py -------------------------------------------------------------------------------- /pysamp/textlabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/textlabel.py -------------------------------------------------------------------------------- /pysamp/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/timer.py -------------------------------------------------------------------------------- /pysamp/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/pysamp/vehicle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/requirements.txt -------------------------------------------------------------------------------- /samp/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/samp/__init__.pyi -------------------------------------------------------------------------------- /scripts/APIGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/APIGenerator.py -------------------------------------------------------------------------------- /scripts/FunctionGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/FunctionGenerator.py -------------------------------------------------------------------------------- /scripts/constants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/constants.txt -------------------------------------------------------------------------------- /scripts/cpp/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/cpp/tests.txt -------------------------------------------------------------------------------- /scripts/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/functions.h -------------------------------------------------------------------------------- /scripts/functions/callbacks.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/functions/functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/functions/functions.txt -------------------------------------------------------------------------------- /scripts/idl/a_actor.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/a_actor.idl -------------------------------------------------------------------------------- /scripts/idl/a_http.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/a_http.idl -------------------------------------------------------------------------------- /scripts/idl/a_objects.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/a_objects.idl -------------------------------------------------------------------------------- /scripts/idl/a_players.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/a_players.idl -------------------------------------------------------------------------------- /scripts/idl/a_samp.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/a_samp.idl -------------------------------------------------------------------------------- /scripts/idl/a_vehicles.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/a_vehicles.idl -------------------------------------------------------------------------------- /scripts/idl/callbacks.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/idl/callbacks.idl -------------------------------------------------------------------------------- /scripts/json/AddMenuItem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddMenuItem.txt -------------------------------------------------------------------------------- /scripts/json/AddPlayerClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddPlayerClass.txt -------------------------------------------------------------------------------- /scripts/json/AddPlayerClassEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddPlayerClassEx.txt -------------------------------------------------------------------------------- /scripts/json/AddStaticPickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddStaticPickup.txt -------------------------------------------------------------------------------- /scripts/json/AddStaticVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddStaticVehicle.txt -------------------------------------------------------------------------------- /scripts/json/AddStaticVehicleEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddStaticVehicleEx.txt -------------------------------------------------------------------------------- /scripts/json/AddVehicleComponent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AddVehicleComponent.txt -------------------------------------------------------------------------------- /scripts/json/AllowAdminTeleport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AllowAdminTeleport.txt -------------------------------------------------------------------------------- /scripts/json/AllowInteriorWeapons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AllowInteriorWeapons.txt -------------------------------------------------------------------------------- /scripts/json/AllowPlayerTeleport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AllowPlayerTeleport.txt -------------------------------------------------------------------------------- /scripts/json/ApplyActorAnimation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ApplyActorAnimation.txt -------------------------------------------------------------------------------- /scripts/json/ApplyAnimation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ApplyAnimation.txt -------------------------------------------------------------------------------- /scripts/json/AttachCameraToObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachCameraToObject.txt -------------------------------------------------------------------------------- /scripts/json/AttachCameraToPlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachCameraToPlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/AttachObjectToObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachObjectToObject.txt -------------------------------------------------------------------------------- /scripts/json/AttachObjectToPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachObjectToPlayer.txt -------------------------------------------------------------------------------- /scripts/json/AttachObjectToVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachObjectToVehicle.txt -------------------------------------------------------------------------------- /scripts/json/AttachPlayerObjectToPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachPlayerObjectToPlayer.txt -------------------------------------------------------------------------------- /scripts/json/AttachPlayerObjectToVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachPlayerObjectToVehicle.txt -------------------------------------------------------------------------------- /scripts/json/AttachTrailerToVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/AttachTrailerToVehicle.txt -------------------------------------------------------------------------------- /scripts/json/Ban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/Ban.txt -------------------------------------------------------------------------------- /scripts/json/BanEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/BanEx.txt -------------------------------------------------------------------------------- /scripts/json/BlockIpAddress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/BlockIpAddress.txt -------------------------------------------------------------------------------- /scripts/json/CancelEdit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CancelEdit.txt -------------------------------------------------------------------------------- /scripts/json/CancelSelectTextDraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CancelSelectTextDraw.txt -------------------------------------------------------------------------------- /scripts/json/ChangeVehicleColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ChangeVehicleColor.txt -------------------------------------------------------------------------------- /scripts/json/ChangeVehiclePaintjob.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ChangeVehiclePaintjob.txt -------------------------------------------------------------------------------- /scripts/json/ClearActorAnimations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ClearActorAnimations.txt -------------------------------------------------------------------------------- /scripts/json/ClearAnimations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ClearAnimations.txt -------------------------------------------------------------------------------- /scripts/json/ConnectNPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ConnectNPC.txt -------------------------------------------------------------------------------- /scripts/json/CreateActor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreateActor.txt -------------------------------------------------------------------------------- /scripts/json/CreateExplosion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreateExplosion.txt -------------------------------------------------------------------------------- /scripts/json/CreateExplosionForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreateExplosionForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/CreateMenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreateMenu.txt -------------------------------------------------------------------------------- /scripts/json/CreateObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreateObject.txt -------------------------------------------------------------------------------- /scripts/json/CreatePickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreatePickup.txt -------------------------------------------------------------------------------- /scripts/json/CreatePlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreatePlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/CreatePlayerTextDraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreatePlayerTextDraw.txt -------------------------------------------------------------------------------- /scripts/json/CreateVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/CreateVehicle.txt -------------------------------------------------------------------------------- /scripts/json/DeletePVar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DeletePVar.txt -------------------------------------------------------------------------------- /scripts/json/DeleteSVar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DeleteSVar.txt -------------------------------------------------------------------------------- /scripts/json/DestroyActor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DestroyActor.txt -------------------------------------------------------------------------------- /scripts/json/DestroyMenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DestroyMenu.txt -------------------------------------------------------------------------------- /scripts/json/DestroyObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DestroyObject.txt -------------------------------------------------------------------------------- /scripts/json/DestroyPickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DestroyPickup.txt -------------------------------------------------------------------------------- /scripts/json/DestroyPlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DestroyPlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/DestroyVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DestroyVehicle.txt -------------------------------------------------------------------------------- /scripts/json/DetachTrailerFromVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DetachTrailerFromVehicle.txt -------------------------------------------------------------------------------- /scripts/json/DisableInteriorEnterExits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisableInteriorEnterExits.txt -------------------------------------------------------------------------------- /scripts/json/DisableMenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisableMenu.txt -------------------------------------------------------------------------------- /scripts/json/DisableMenuRow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisableMenuRow.txt -------------------------------------------------------------------------------- /scripts/json/DisableNameTagLOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisableNameTagLOS.txt -------------------------------------------------------------------------------- /scripts/json/DisablePlayerCheckpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisablePlayerCheckpoint.txt -------------------------------------------------------------------------------- /scripts/json/DisablePlayerRaceCheckpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisablePlayerRaceCheckpoint.txt -------------------------------------------------------------------------------- /scripts/json/DisableRemoteVehicleCollisions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/DisableRemoteVehicleCollisions.txt -------------------------------------------------------------------------------- /scripts/json/EditAttachedObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EditAttachedObject.txt -------------------------------------------------------------------------------- /scripts/json/EditObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EditObject.txt -------------------------------------------------------------------------------- /scripts/json/EditPlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EditPlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/EnablePlayerCameraTarget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EnablePlayerCameraTarget.txt -------------------------------------------------------------------------------- /scripts/json/EnableStuntBonusForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EnableStuntBonusForAll.txt -------------------------------------------------------------------------------- /scripts/json/EnableStuntBonusForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EnableStuntBonusForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/EnableTirePopping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EnableTirePopping.txt -------------------------------------------------------------------------------- /scripts/json/EnableVehicleFriendlyFire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EnableVehicleFriendlyFire.txt -------------------------------------------------------------------------------- /scripts/json/EnableZoneNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/EnableZoneNames.txt -------------------------------------------------------------------------------- /scripts/json/ForceClassSelection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ForceClassSelection.txt -------------------------------------------------------------------------------- /scripts/json/GameModeExit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GameModeExit.txt -------------------------------------------------------------------------------- /scripts/json/GameTextForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GameTextForAll.txt -------------------------------------------------------------------------------- /scripts/json/GameTextForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GameTextForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneCreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneCreate.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneDestroy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneDestroy.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneFlashForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneFlashForAll.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneFlashForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneFlashForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneHideForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneHideForAll.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneHideForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneHideForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneShowForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneShowForAll.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneShowForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneShowForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneStopFlashForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneStopFlashForAll.txt -------------------------------------------------------------------------------- /scripts/json/GangZoneStopFlashForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GangZoneStopFlashForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GetActorFacingAngle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetActorFacingAngle.txt -------------------------------------------------------------------------------- /scripts/json/GetActorHealth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetActorHealth.txt -------------------------------------------------------------------------------- /scripts/json/GetActorPoolSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetActorPoolSize.txt -------------------------------------------------------------------------------- /scripts/json/GetActorPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetActorPos.txt -------------------------------------------------------------------------------- /scripts/json/GetActorVirtualWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetActorVirtualWorld.txt -------------------------------------------------------------------------------- /scripts/json/GetAnimationName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetAnimationName.txt -------------------------------------------------------------------------------- /scripts/json/GetConsoleVarAsBool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetConsoleVarAsBool.txt -------------------------------------------------------------------------------- /scripts/json/GetConsoleVarAsInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetConsoleVarAsInt.txt -------------------------------------------------------------------------------- /scripts/json/GetConsoleVarAsString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetConsoleVarAsString.txt -------------------------------------------------------------------------------- /scripts/json/GetGravity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetGravity.txt -------------------------------------------------------------------------------- /scripts/json/GetMaxPlayers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetMaxPlayers.txt -------------------------------------------------------------------------------- /scripts/json/GetNetworkStats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetNetworkStats.txt -------------------------------------------------------------------------------- /scripts/json/GetObjectModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetObjectModel.txt -------------------------------------------------------------------------------- /scripts/json/GetObjectPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetObjectPos.txt -------------------------------------------------------------------------------- /scripts/json/GetObjectRot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetObjectRot.txt -------------------------------------------------------------------------------- /scripts/json/GetPVarFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPVarFloat.txt -------------------------------------------------------------------------------- /scripts/json/GetPVarInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPVarInt.txt -------------------------------------------------------------------------------- /scripts/json/GetPVarNameAtIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPVarNameAtIndex.txt -------------------------------------------------------------------------------- /scripts/json/GetPVarString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPVarString.txt -------------------------------------------------------------------------------- /scripts/json/GetPVarType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPVarType.txt -------------------------------------------------------------------------------- /scripts/json/GetPVarsUpperIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPVarsUpperIndex.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerAmmo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerAmmo.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerAnimationIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerAnimationIndex.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerArmour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerArmour.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraAspectRatio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraAspectRatio.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraFrontVector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraFrontVector.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraMode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraMode.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraPos.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraTargetActor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraTargetActor.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraTargetObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraTargetObject.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraTargetPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraTargetPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraTargetVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraTargetVehicle.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerCameraZoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerCameraZoom.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerColor.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerDistanceFromPoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerDistanceFromPoint.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerDrunkLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerDrunkLevel.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerFacingAngle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerFacingAngle.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerFightingStyle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerFightingStyle.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerHealth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerHealth.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerInterior.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerInterior.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerIp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerIp.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerKeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerKeys.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerLastShotVectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerLastShotVectors.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerMenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerMenu.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerMoney.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerMoney.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerName.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerNetworkStats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerNetworkStats.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerObjectModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerObjectModel.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerObjectPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerObjectPos.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerObjectRot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerObjectRot.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerPing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerPing.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerPoolSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerPoolSize.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerPos.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerScore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerScore.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerSkin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerSkin.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerSpecialAction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerSpecialAction.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerState.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerState.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerSurfingObjectID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerSurfingObjectID.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerSurfingVehicleID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerSurfingVehicleID.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerTargetActor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerTargetActor.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerTargetPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerTargetPlayer.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerTeam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerTeam.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerTime.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerVehicleID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerVehicleID.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerVehicleSeat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerVehicleSeat.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerVelocity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerVelocity.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerVersion.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerVirtualWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerVirtualWorld.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerWantedLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerWantedLevel.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerWeapon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerWeapon.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerWeaponData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerWeaponData.txt -------------------------------------------------------------------------------- /scripts/json/GetPlayerWeaponState.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetPlayerWeaponState.txt -------------------------------------------------------------------------------- /scripts/json/GetSVarFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetSVarFloat.txt -------------------------------------------------------------------------------- /scripts/json/GetSVarInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetSVarInt.txt -------------------------------------------------------------------------------- /scripts/json/GetSVarNameAtIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetSVarNameAtIndex.txt -------------------------------------------------------------------------------- /scripts/json/GetSVarString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetSVarString.txt -------------------------------------------------------------------------------- /scripts/json/GetSVarType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetSVarType.txt -------------------------------------------------------------------------------- /scripts/json/GetSVarsUpperIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetSVarsUpperIndex.txt -------------------------------------------------------------------------------- /scripts/json/GetServerTickRate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetServerTickRate.txt -------------------------------------------------------------------------------- /scripts/json/GetServerVarAsBool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetServerVarAsBool.txt -------------------------------------------------------------------------------- /scripts/json/GetServerVarAsInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetServerVarAsInt.txt -------------------------------------------------------------------------------- /scripts/json/GetServerVarAsString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetServerVarAsString.txt -------------------------------------------------------------------------------- /scripts/json/GetTickCount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetTickCount.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleComponentInSlot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleComponentInSlot.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleComponentType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleComponentType.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleDamageStatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleDamageStatus.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleDistanceFromPoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleDistanceFromPoint.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleHealth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleHealth.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleModel.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleModelInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleModelInfo.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleParamsCarDoors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleParamsCarDoors.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleParamsCarWindows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleParamsCarWindows.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleParamsEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleParamsEx.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleParamsSirenState.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleParamsSirenState.txt -------------------------------------------------------------------------------- /scripts/json/GetVehiclePoolSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehiclePoolSize.txt -------------------------------------------------------------------------------- /scripts/json/GetVehiclePos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehiclePos.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleRotationQuat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleRotationQuat.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleTrailer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleTrailer.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleVelocity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleVelocity.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleVirtualWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleVirtualWorld.txt -------------------------------------------------------------------------------- /scripts/json/GetVehicleZAngle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetVehicleZAngle.txt -------------------------------------------------------------------------------- /scripts/json/GetWeaponName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GetWeaponName.txt -------------------------------------------------------------------------------- /scripts/json/GivePlayerMoney.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GivePlayerMoney.txt -------------------------------------------------------------------------------- /scripts/json/GivePlayerWeapon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/GivePlayerWeapon.txt -------------------------------------------------------------------------------- /scripts/json/HideMenuForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/HideMenuForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/InterpolateCameraLookAt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/InterpolateCameraLookAt.txt -------------------------------------------------------------------------------- /scripts/json/InterpolateCameraPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/InterpolateCameraPos.txt -------------------------------------------------------------------------------- /scripts/json/IsActorInvulnerable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsActorInvulnerable.txt -------------------------------------------------------------------------------- /scripts/json/IsActorStreamedIn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsActorStreamedIn.txt -------------------------------------------------------------------------------- /scripts/json/IsObjectMoving.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsObjectMoving.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerAdmin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerAdmin.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerAttachedObjectSlotUsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerAttachedObjectSlotUsed.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerConnected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerConnected.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerInAnyVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerInAnyVehicle.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerInCheckpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerInCheckpoint.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerInRaceCheckpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerInRaceCheckpoint.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerInRangeOfPoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerInRangeOfPoint.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerInVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerInVehicle.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerNPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerNPC.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerObjectMoving.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerObjectMoving.txt -------------------------------------------------------------------------------- /scripts/json/IsPlayerStreamedIn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsPlayerStreamedIn.txt -------------------------------------------------------------------------------- /scripts/json/IsTrailerAttachedToVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsTrailerAttachedToVehicle.txt -------------------------------------------------------------------------------- /scripts/json/IsValidActor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsValidActor.txt -------------------------------------------------------------------------------- /scripts/json/IsValidMenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsValidMenu.txt -------------------------------------------------------------------------------- /scripts/json/IsValidObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsValidObject.txt -------------------------------------------------------------------------------- /scripts/json/IsValidPlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsValidPlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/IsValidVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsValidVehicle.txt -------------------------------------------------------------------------------- /scripts/json/IsVehicleStreamedIn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/IsVehicleStreamedIn.txt -------------------------------------------------------------------------------- /scripts/json/Kick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/Kick.txt -------------------------------------------------------------------------------- /scripts/json/LimitGlobalChatRadius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/LimitGlobalChatRadius.txt -------------------------------------------------------------------------------- /scripts/json/LimitPlayerMarkerRadius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/LimitPlayerMarkerRadius.txt -------------------------------------------------------------------------------- /scripts/json/LinkVehicleToInterior.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/LinkVehicleToInterior.txt -------------------------------------------------------------------------------- /scripts/json/ManualVehicleEngineAndLights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ManualVehicleEngineAndLights.txt -------------------------------------------------------------------------------- /scripts/json/MoveObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/MoveObject.txt -------------------------------------------------------------------------------- /scripts/json/MovePlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/MovePlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_BytesReceived.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_BytesReceived.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_BytesSent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_BytesSent.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_ConnectionStatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_ConnectionStatus.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_GetConnectedTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_GetConnectedTime.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_GetIpPort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_GetIpPort.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_MessagesReceived.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_MessagesReceived.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_MessagesRecvPerSecond.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_MessagesRecvPerSecond.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_MessagesSent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_MessagesSent.txt -------------------------------------------------------------------------------- /scripts/json/NetStats_PacketLossPercent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/NetStats_PacketLossPercent.txt -------------------------------------------------------------------------------- /scripts/json/PlayAudioStreamForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayAudioStreamForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/PlayCrimeReportForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayCrimeReportForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/PlayerPlaySound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerPlaySound.txt -------------------------------------------------------------------------------- /scripts/json/PlayerSpectatePlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerSpectatePlayer.txt -------------------------------------------------------------------------------- /scripts/json/PlayerSpectateVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerSpectateVehicle.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawAlignment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawAlignment.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawBackgroundColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawBackgroundColor.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawBoxColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawBoxColor.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawColor.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawDestroy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawDestroy.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawFont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawFont.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawHide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawHide.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawLetterSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawLetterSize.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetOutline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetOutline.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetPreviewModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetPreviewModel.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetPreviewRot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetPreviewRot.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetPreviewVehCol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetPreviewVehCol.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetProportional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetProportional.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetSelectable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetSelectable.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetShadow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetShadow.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawSetString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawSetString.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawShow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawShow.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawTextSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawTextSize.txt -------------------------------------------------------------------------------- /scripts/json/PlayerTextDrawUseBox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PlayerTextDrawUseBox.txt -------------------------------------------------------------------------------- /scripts/json/PutPlayerInVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/PutPlayerInVehicle.txt -------------------------------------------------------------------------------- /scripts/json/RemoveBuildingForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/RemoveBuildingForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/RemovePlayerAttachedObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/RemovePlayerAttachedObject.txt -------------------------------------------------------------------------------- /scripts/json/RemovePlayerFromVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/RemovePlayerFromVehicle.txt -------------------------------------------------------------------------------- /scripts/json/RemovePlayerMapIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/RemovePlayerMapIcon.txt -------------------------------------------------------------------------------- /scripts/json/RemoveVehicleComponent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/RemoveVehicleComponent.txt -------------------------------------------------------------------------------- /scripts/json/RepairVehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/RepairVehicle.txt -------------------------------------------------------------------------------- /scripts/json/ResetPlayerMoney.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ResetPlayerMoney.txt -------------------------------------------------------------------------------- /scripts/json/ResetPlayerWeapons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ResetPlayerWeapons.txt -------------------------------------------------------------------------------- /scripts/json/SelectObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SelectObject.txt -------------------------------------------------------------------------------- /scripts/json/SelectTextDraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SelectTextDraw.txt -------------------------------------------------------------------------------- /scripts/json/SendClientMessage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendClientMessage.txt -------------------------------------------------------------------------------- /scripts/json/SendClientMessageToAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendClientMessageToAll.txt -------------------------------------------------------------------------------- /scripts/json/SendDeathMessage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendDeathMessage.txt -------------------------------------------------------------------------------- /scripts/json/SendDeathMessageToPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendDeathMessageToPlayer.txt -------------------------------------------------------------------------------- /scripts/json/SendPlayerMessageToAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendPlayerMessageToAll.txt -------------------------------------------------------------------------------- /scripts/json/SendPlayerMessageToPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendPlayerMessageToPlayer.txt -------------------------------------------------------------------------------- /scripts/json/SendRconCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SendRconCommand.txt -------------------------------------------------------------------------------- /scripts/json/SetActorFacingAngle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetActorFacingAngle.txt -------------------------------------------------------------------------------- /scripts/json/SetActorHealth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetActorHealth.txt -------------------------------------------------------------------------------- /scripts/json/SetActorInvulnerable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetActorInvulnerable.txt -------------------------------------------------------------------------------- /scripts/json/SetActorPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetActorPos.txt -------------------------------------------------------------------------------- /scripts/json/SetActorVirtualWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetActorVirtualWorld.txt -------------------------------------------------------------------------------- /scripts/json/SetCameraBehindPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetCameraBehindPlayer.txt -------------------------------------------------------------------------------- /scripts/json/SetDeathDropAmount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetDeathDropAmount.txt -------------------------------------------------------------------------------- /scripts/json/SetGameModeText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetGameModeText.txt -------------------------------------------------------------------------------- /scripts/json/SetGravity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetGravity.txt -------------------------------------------------------------------------------- /scripts/json/SetMenuColumnHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetMenuColumnHeader.txt -------------------------------------------------------------------------------- /scripts/json/SetNameTagDrawDistance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetNameTagDrawDistance.txt -------------------------------------------------------------------------------- /scripts/json/SetObjectMaterial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetObjectMaterial.txt -------------------------------------------------------------------------------- /scripts/json/SetObjectMaterialText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetObjectMaterialText.txt -------------------------------------------------------------------------------- /scripts/json/SetObjectNoCameraCol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetObjectNoCameraCol.txt -------------------------------------------------------------------------------- /scripts/json/SetObjectPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetObjectPos.txt -------------------------------------------------------------------------------- /scripts/json/SetObjectRot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetObjectRot.txt -------------------------------------------------------------------------------- /scripts/json/SetObjectsDefaultCameraCol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetObjectsDefaultCameraCol.txt -------------------------------------------------------------------------------- /scripts/json/SetPVarFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPVarFloat.txt -------------------------------------------------------------------------------- /scripts/json/SetPVarInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPVarInt.txt -------------------------------------------------------------------------------- /scripts/json/SetPVarString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPVarString.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerAmmo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerAmmo.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerArmedWeapon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerArmedWeapon.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerArmour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerArmour.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerAttachedObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerAttachedObject.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerCameraLookAt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerCameraLookAt.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerCameraPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerCameraPos.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerChatBubble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerChatBubble.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerCheckpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerCheckpoint.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerColor.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerDrunkLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerDrunkLevel.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerFacingAngle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerFacingAngle.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerFightingStyle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerFightingStyle.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerHealth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerHealth.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerInterior.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerInterior.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerMapIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerMapIcon.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerMarkerForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerMarkerForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerName.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerObjectMaterial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerObjectMaterial.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerObjectMaterialText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerObjectMaterialText.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerObjectNoCameraCol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerObjectNoCameraCol.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerObjectPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerObjectPos.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerObjectRot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerObjectRot.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerPos.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerPosFindZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerPosFindZ.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerRaceCheckpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerRaceCheckpoint.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerScore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerScore.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerShopName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerShopName.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerSkillLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerSkillLevel.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerSkin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerSkin.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerSpecialAction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerSpecialAction.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerTeam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerTeam.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerTime.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerVelocity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerVelocity.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerVirtualWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerVirtualWorld.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerWantedLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerWantedLevel.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerWeather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerWeather.txt -------------------------------------------------------------------------------- /scripts/json/SetPlayerWorldBounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetPlayerWorldBounds.txt -------------------------------------------------------------------------------- /scripts/json/SetSVarFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetSVarFloat.txt -------------------------------------------------------------------------------- /scripts/json/SetSVarInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetSVarInt.txt -------------------------------------------------------------------------------- /scripts/json/SetSVarString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetSVarString.txt -------------------------------------------------------------------------------- /scripts/json/SetSpawnInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetSpawnInfo.txt -------------------------------------------------------------------------------- /scripts/json/SetTeamCount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetTeamCount.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleAngularVelocity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleAngularVelocity.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleHealth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleHealth.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleNumberPlate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleNumberPlate.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleParamsCarDoors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleParamsCarDoors.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleParamsCarWindows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleParamsCarWindows.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleParamsEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleParamsEx.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleParamsForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleParamsForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/SetVehiclePos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehiclePos.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleToRespawn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleToRespawn.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleVelocity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleVelocity.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleVirtualWorld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleVirtualWorld.txt -------------------------------------------------------------------------------- /scripts/json/SetVehicleZAngle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetVehicleZAngle.txt -------------------------------------------------------------------------------- /scripts/json/SetWeather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetWeather.txt -------------------------------------------------------------------------------- /scripts/json/SetWorldTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SetWorldTime.txt -------------------------------------------------------------------------------- /scripts/json/ShowMenuForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ShowMenuForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/ShowNameTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ShowNameTags.txt -------------------------------------------------------------------------------- /scripts/json/ShowPlayerDialog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ShowPlayerDialog.txt -------------------------------------------------------------------------------- /scripts/json/ShowPlayerMarkers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ShowPlayerMarkers.txt -------------------------------------------------------------------------------- /scripts/json/ShowPlayerNameTagForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/ShowPlayerNameTagForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/SpawnPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/SpawnPlayer.txt -------------------------------------------------------------------------------- /scripts/json/StartRecordingPlayerData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/StartRecordingPlayerData.txt -------------------------------------------------------------------------------- /scripts/json/StopAudioStreamForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/StopAudioStreamForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/StopObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/StopObject.txt -------------------------------------------------------------------------------- /scripts/json/StopPlayerObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/StopPlayerObject.txt -------------------------------------------------------------------------------- /scripts/json/StopRecordingPlayerData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/StopRecordingPlayerData.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawAlignment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawAlignment.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawBackgroundColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawBackgroundColor.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawBoxColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawBoxColor.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawColor.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawCreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawCreate.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawDestroy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawDestroy.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawFont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawFont.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawHideForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawHideForAll.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawHideForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawHideForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawLetterSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawLetterSize.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetOutline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetOutline.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetPreviewModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetPreviewModel.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetPreviewRot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetPreviewRot.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetPreviewVehCol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetPreviewVehCol.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetProportional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetProportional.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetSelectable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetSelectable.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetShadow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetShadow.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawSetString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawSetString.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawShowForAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawShowForAll.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawShowForPlayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawShowForPlayer.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawTextSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawTextSize.txt -------------------------------------------------------------------------------- /scripts/json/TextDrawUseBox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TextDrawUseBox.txt -------------------------------------------------------------------------------- /scripts/json/TogglePlayerClock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TogglePlayerClock.txt -------------------------------------------------------------------------------- /scripts/json/TogglePlayerControllable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TogglePlayerControllable.txt -------------------------------------------------------------------------------- /scripts/json/TogglePlayerSpectating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/TogglePlayerSpectating.txt -------------------------------------------------------------------------------- /scripts/json/UnBlockIpAddress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/UnBlockIpAddress.txt -------------------------------------------------------------------------------- /scripts/json/UpdateVehicleDamageStatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/UpdateVehicleDamageStatus.txt -------------------------------------------------------------------------------- /scripts/json/UsePlayerPedAnims.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/UsePlayerPedAnims.txt -------------------------------------------------------------------------------- /scripts/json/VectorSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/VectorSize.txt -------------------------------------------------------------------------------- /scripts/json/gpci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/json/gpci.txt -------------------------------------------------------------------------------- /scripts/setup_workspace.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/scripts/setup_workspace.bat -------------------------------------------------------------------------------- /scripts/setup_workspace.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/Doxyfile.in -------------------------------------------------------------------------------- /src/bindings/logprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/bindings/logprintf.cpp -------------------------------------------------------------------------------- /src/bindings/logprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/bindings/logprintf.h -------------------------------------------------------------------------------- /src/bindings/samp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/bindings/samp.cpp -------------------------------------------------------------------------------- /src/bindings/samp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/bindings/samp.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/limited_api_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/limited_api_python.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/main.def -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/main.h -------------------------------------------------------------------------------- /src/pysamp/callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/callbacks.cpp -------------------------------------------------------------------------------- /src/pysamp/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/callbacks.h -------------------------------------------------------------------------------- /src/pysamp/param_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/param_converter.cpp -------------------------------------------------------------------------------- /src/pysamp/param_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/param_converter.h -------------------------------------------------------------------------------- /src/pysamp/pygamemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/pygamemode.cpp -------------------------------------------------------------------------------- /src/pysamp/pygamemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/pygamemode.h -------------------------------------------------------------------------------- /src/pysamp/pysamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/pysamp.cpp -------------------------------------------------------------------------------- /src/pysamp/pysamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/pysamp.h -------------------------------------------------------------------------------- /src/pysamp/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/timer.cpp -------------------------------------------------------------------------------- /src/pysamp/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysamp/PySAMP/HEAD/src/pysamp/timer.h --------------------------------------------------------------------------------