├── LICENSE ├── README.md ├── announce.exe ├── gamemodes ├── OpenDM │ ├── cmds.inc │ ├── colors.inc │ ├── td.inc │ └── var.inc └── opendm.pwn ├── libmysql.dll ├── mysql_log.txt ├── pawno ├── include │ ├── a_actor.inc │ ├── a_http.inc │ ├── a_npc.inc │ ├── a_objects.inc │ ├── a_players.inc │ ├── a_samp.inc │ ├── a_sampdb.inc │ ├── a_vehicles.inc │ ├── core.inc │ ├── datagram.inc │ ├── file.inc │ ├── float.inc │ ├── md5.inc │ ├── mysql.inc │ ├── sscanf.inc │ ├── streamer.inc │ ├── string.inc │ ├── time.inc │ ├── y_va.inc │ └── zcmd.inc ├── libpawnc.dll ├── new.pwn ├── pawn.ico ├── pawnc.dll ├── pawncc.exe ├── pawno.exe └── settings.ini ├── plugins ├── mysql ├── mysql.dll ├── sscanf ├── sscanf.dll ├── streamer └── streamer.dll ├── samp-license.txt ├── samp-npc.exe ├── samp-server.exe ├── scriptfiles ├── properties │ ├── banks.txt │ ├── businesses.txt │ ├── houses.txt │ ├── interiors.txt │ └── police.txt └── 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 ├── server-readme.txt ├── server.cfg └── server_log.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/README.md -------------------------------------------------------------------------------- /announce.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/announce.exe -------------------------------------------------------------------------------- /gamemodes/OpenDM/cmds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/gamemodes/OpenDM/cmds.inc -------------------------------------------------------------------------------- /gamemodes/OpenDM/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/gamemodes/OpenDM/colors.inc -------------------------------------------------------------------------------- /gamemodes/OpenDM/td.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/gamemodes/OpenDM/td.inc -------------------------------------------------------------------------------- /gamemodes/OpenDM/var.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/gamemodes/OpenDM/var.inc -------------------------------------------------------------------------------- /gamemodes/opendm.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/gamemodes/opendm.pwn -------------------------------------------------------------------------------- /libmysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/libmysql.dll -------------------------------------------------------------------------------- /mysql_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/mysql_log.txt -------------------------------------------------------------------------------- /pawno/include/a_actor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_actor.inc -------------------------------------------------------------------------------- /pawno/include/a_http.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_http.inc -------------------------------------------------------------------------------- /pawno/include/a_npc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_npc.inc -------------------------------------------------------------------------------- /pawno/include/a_objects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_objects.inc -------------------------------------------------------------------------------- /pawno/include/a_players.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_players.inc -------------------------------------------------------------------------------- /pawno/include/a_samp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_samp.inc -------------------------------------------------------------------------------- /pawno/include/a_sampdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_sampdb.inc -------------------------------------------------------------------------------- /pawno/include/a_vehicles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/a_vehicles.inc -------------------------------------------------------------------------------- /pawno/include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/core.inc -------------------------------------------------------------------------------- /pawno/include/datagram.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/datagram.inc -------------------------------------------------------------------------------- /pawno/include/file.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/file.inc -------------------------------------------------------------------------------- /pawno/include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/float.inc -------------------------------------------------------------------------------- /pawno/include/md5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/md5.inc -------------------------------------------------------------------------------- /pawno/include/mysql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/mysql.inc -------------------------------------------------------------------------------- /pawno/include/sscanf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/sscanf.inc -------------------------------------------------------------------------------- /pawno/include/streamer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/streamer.inc -------------------------------------------------------------------------------- /pawno/include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/string.inc -------------------------------------------------------------------------------- /pawno/include/time.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/time.inc -------------------------------------------------------------------------------- /pawno/include/y_va.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/y_va.inc -------------------------------------------------------------------------------- /pawno/include/zcmd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/include/zcmd.inc -------------------------------------------------------------------------------- /pawno/libpawnc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/libpawnc.dll -------------------------------------------------------------------------------- /pawno/new.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/new.pwn -------------------------------------------------------------------------------- /pawno/pawn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/pawn.ico -------------------------------------------------------------------------------- /pawno/pawnc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/pawnc.dll -------------------------------------------------------------------------------- /pawno/pawncc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/pawncc.exe -------------------------------------------------------------------------------- /pawno/pawno.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/pawno.exe -------------------------------------------------------------------------------- /pawno/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/pawno/settings.ini -------------------------------------------------------------------------------- /plugins/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/plugins/mysql -------------------------------------------------------------------------------- /plugins/mysql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/plugins/mysql.dll -------------------------------------------------------------------------------- /plugins/sscanf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/plugins/sscanf -------------------------------------------------------------------------------- /plugins/sscanf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/plugins/sscanf.dll -------------------------------------------------------------------------------- /plugins/streamer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/plugins/streamer -------------------------------------------------------------------------------- /plugins/streamer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/plugins/streamer.dll -------------------------------------------------------------------------------- /samp-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/samp-license.txt -------------------------------------------------------------------------------- /samp-npc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/samp-npc.exe -------------------------------------------------------------------------------- /samp-server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/samp-server.exe -------------------------------------------------------------------------------- /scriptfiles/properties/banks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/properties/banks.txt -------------------------------------------------------------------------------- /scriptfiles/properties/businesses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/properties/businesses.txt -------------------------------------------------------------------------------- /scriptfiles/properties/houses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/properties/houses.txt -------------------------------------------------------------------------------- /scriptfiles/properties/interiors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/properties/interiors.txt -------------------------------------------------------------------------------- /scriptfiles/properties/police.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/properties/police.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/bone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/bone.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/flint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/flint.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/ls_airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/ls_airport.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/ls_gen_inner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/ls_gen_inner.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/ls_gen_outer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/ls_gen_outer.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/ls_law.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/ls_law.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/lv_airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/lv_airport.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/lv_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/lv_gen.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/lv_law.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/lv_law.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/pilots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/pilots.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/red_county.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/red_county.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/sf_airport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/sf_airport.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/sf_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/sf_gen.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/sf_law.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/sf_law.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/sf_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/sf_train.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/tierra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/tierra.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/trains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/trains.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/trains_platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/trains_platform.txt -------------------------------------------------------------------------------- /scriptfiles/vehicles/whetstone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/scriptfiles/vehicles/whetstone.txt -------------------------------------------------------------------------------- /server-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/server-readme.txt -------------------------------------------------------------------------------- /server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/server.cfg -------------------------------------------------------------------------------- /server_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criticalerror99/samp-opendm/HEAD/server_log.txt --------------------------------------------------------------------------------