SA-MP 0.3z RC5
#1

SA-MP 0.3z RC

Note: SA-MP 0.3z is now released. This thread will be archived.

SA-MP 0.3z is mainly a security update that we hope to push to release quickly. There are a few new features and there should be time to address some existing 0.3 bugs during the RC.

Updated shooting sync for bullet weapons

Shots fired by players are now lag compensated, meaning you can aim at the skin instead of lead aiming.

The server can now get access to the full bullet information to tell if it hit a player, vehicle or object.

pawn Code:
#define BULLET_HIT_TYPE_NONE            0
#define BULLET_HIT_TYPE_PLAYER          1
#define BULLET_HIT_TYPE_VEHICLE         2
#define BULLET_HIT_TYPE_OBJECT          3
#define BULLET_HIT_TYPE_PLAYER_OBJECT   4

forward OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ);
The give/take damage callbacks now contain the body part hit ID. If your script uses these callbacks, you will need to update the definition in your script.

pawn Code:
forward OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart);
forward OnPlayerGiveDamage(playerid, damagedid, Float:amount, weaponid, bodypart);
Other stuff

- A network level setting for server.cfg 'messageholelimit' has been added to deal with DoS attacks.
- The Rivershell gamemode has been updated to version 2.

Updates:

SA-MP 0.3z RC5-2 Client update

- Fixed: Player with the highest player ID was not sending any unoccupied vehicle updates.

SA-MP 0.3z RC5 Client/Server update

- Fixed range check error in the server browser if you added an erroneous port (like 77777).
- Some internal optimisation in the client should improve performance.
- Fixed problem where PVars were not accessible in OnPlayerDisconnect during a gamemode restart.
- Added pawn native GetServerTickRate() to return the current tickrate (like FPS) of the server.
- Fixed problem with 3DText/NameTag LoS tests on server objects.

- Changes to the behaviour and parameters of OnUnoccupiedVehicleUpdate.

In previous server versions, clients could send updates about vehicles that aren't being controlled/driven by other players,
although the server had no ability to cancel these updates. The script will now be notified about such updates before the
vehicle is updated internally. GetVehiclePos would return the existing position, not the updated position. Newly added parameters
describe the player's requested update position. The script can now return 0 to cancel the update or return 1 to allow the update through.

All scripts using OnUnoccupiedVehicleUpdate will need to be updated and recompiled for 0.3z.

pawn Code:
forward OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_x, Float:new_y, Float:new_z);
- server.cfg option 'lagcompmode'
The server.cfg option 'shotcompmode' was replaced with 'lagcompmode' as it will be used for other lag compensation settings in future SA-MP versions.
Quote:

lagcompmode 0 ; lag compensation is disabled
lagcompmode 1 ; (default) lag compensation is enabled
lagcompmode 2 ; lag compensation enabled, position only.

- The server browser will now show a 'lagcomp' setting in the rules window.
- When lag compensation is disabled, legacy shot mode will now function exactly as it did in previous SA-MP versions (no calls to OnPlayerWeaponShot etc).

SA-MP 0.3z RC4 Client/Server update

- Fixed problem where long distance shots might go missing
- Nametag LoS tests will also apply to server objects
- OnPlayerGiveDamage is now called for NPCs
- Added GetPlayerLastShotVectors for extended information on bullet shots
- Added legacy mode for shot firing (shotcompmode 2 server.cfg setting) which uses only the camera for aiming and allows joypad auto-aiming
- Fixed: players could not be shot while surfing a vehicle
- Added some extended player camera information like aspect ratio and zoom level (for sniper)
- Extended 'netstats' functions so the script can get lower level network information without having to parse the stats string

pawn Code:
native GetPlayerLastShotVectors(playerid, &Float:fOriginX, &Float:fOriginY, &Float:fOriginZ, &Float:fHitPosX, &Float:fHitPosY, &Float:fHitPosZ);

native Float:GetPlayerCameraAspectRatio(playerid);
native Float:GetPlayerCameraZoom(playerid);

// Extended admin network stats
native NetStats_GetConnectedTime(playerid);
native NetStats_MessagesReceived(playerid);
native NetStats_BytesReceived(playerid);
native NetStats_MessagesSent(playerid);
native NetStats_BytesSent(playerid);
native NetStats_MessagesRecvPerSecond(playerid);
native Float:NetStats_PacketLossPercent(playerid);
native NetStats_ConnectionStatus(playerid);
native NetStats_GetIpPort(playerid, ip_port[], ip_port_len);
SA-MP 0.3z RC3 Client/Server update

- Fixed: Joypad target switching still enabled autoaiming.
- Fixed: Sniper bullets were not working when vectored outside the SA land area.
- Extra server data for investigating any player shot data corruption.
- Added VectorSize pawn function.

SA-MP 0.3z RC2 Client/Server update

- Removes autoaim ability from the joypad controls
- Adds BULLET_HIT_TYPE_PLAYER_OBJECT 4
- Fixes gunshell/smoke particle offset problem

Downloads:

0.3z RC5-2 Client
SA-MP 0.3z RC5 Client Installer

0.3z RC5 Server
SA-MP 0.3z RC5 Windows Server
SA-MP 0.3z RC5 Linux Server

0.3z RC4 Client
SA-MP 0.3z RC4 Client Installer

0.3z RC4 Server
SA-MP 0.3z RC4 Windows Server
SA-MP 0.3z RC4 Linux Server

0.3z RC3 Client
SA-MP 0.3z RC3 Client Installer

0.3z RC3 Server
SA-MP 0.3z RC3 Windows Server
SA-MP 0.3z RC3 Linux Server

0.3z RC2 Client
SA-MP 0.3z RC2 Client Installer

0.3z RC2 Server
SA-MP 0.3z RC2 Windows Server
SA-MP 0.3z RC2 Linux Server

0.3z RC1 Client
SA-MP 0.3z RC1 Client Installer

0.3z RC1 Server
SA-MP 0.3z RC1 Windows Server
SA-MP 0.3z RC1 Linux Server
Reply


Messages In This Thread
SA-MP 0.3z RC5 - by Kalcor - 16.01.2014, 11:01
Re: SA-MP 0.3z RC1 - by iBeast - 16.01.2014, 11:41
Re: SA-MP 0.3z RC1 - by Kindred - 16.01.2014, 11:42
Re: SA-MP 0.3z RC1 - by iZN - 16.01.2014, 11:42
Re: SA-MP 0.3z RC1 - by AIped - 16.01.2014, 11:42
Re: SA-MP 0.3z RC1 - by Kirollos - 16.01.2014, 11:43
Re: SA-MP 0.3z RC1 - by [WA]iRonan - 16.01.2014, 11:44
Re: SA-MP 0.3z RC1 - by Walkie - 16.01.2014, 11:44
Re: SA-MP 0.3z RC1 - by IstuntmanI - 16.01.2014, 11:44
Re: SA-MP 0.3z RC1 - by Blunt - 16.01.2014, 11:44
Re: SA-MP 0.3z RC1 - by Sublime - 16.01.2014, 11:45
Re: SA-MP 0.3z RC1 - by Vince - 16.01.2014, 11:45
Re: SA-MP 0.3z RC1 - by Face9000 - 16.01.2014, 11:50
Re: SA-MP 0.3z RC1 - by [WA]iRonan - 16.01.2014, 11:52
Re: SA-MP 0.3z RC1 - by doreto - 16.01.2014, 13:18
Re: SA-MP 0.3z RC1 - by DiDok - 16.01.2014, 13:18
Re: SA-MP 0.3z RC1 - by Privies - 16.01.2014, 13:23
Re: SA-MP 0.3z RC1 - by Omar55555 - 16.01.2014, 13:23
Re: SA-MP 0.3z RC1 - by mariocarver - 16.01.2014, 13:26
Respuesta: SA-MP 0.3z RC1 - by xeon_inside - 16.01.2014, 13:26
Re: SA-MP 0.3z RC1 - by smiiir - 16.01.2014, 13:30
Re: SA-MP 0.3z RC1 - by EvenemE - 16.01.2014, 13:30
Re: SA-MP 0.3z RC1 - by Face9000 - 16.01.2014, 13:31
Re: SA-MP 0.3z RC1 - by MP2 - 16.01.2014, 13:33
Re: SA-MP 0.3z RC1 - by Escapist - 16.01.2014, 13:39
Re: SA-MP 0.3z RC1 - by Jankingston - 16.01.2014, 13:46
Re: SA-MP 0.3z RC1 - by Jay_ - 16.01.2014, 13:46
Re: SA-MP 0.3z RC1 - by Pottus - 16.01.2014, 13:46
Re: SA-MP 0.3z RC1 - by [WA]iRonan - 16.01.2014, 13:48
Re: SA-MP 0.3z RC1 - by MP2 - 16.01.2014, 13:50
Re: SA-MP 0.3z RC1 - by Jochemd - 16.01.2014, 15:16
Re: SA-MP 0.3z RC1 - by Zamora - 16.01.2014, 15:18
Re: SA-MP 0.3z RC1 - by MP2 - 16.01.2014, 15:19
Re: SA-MP 0.3z RC1 - by Ayham - 16.01.2014, 15:19
AW: SA-MP 0.3z RC1 - by [NeS]Justin - 16.01.2014, 15:20
Re: SA-MP 0.3z RC1 - by MahdiGames - 16.01.2014, 15:20
Re: SA-MP 0.3z RC1 - by Emre__ - 16.01.2014, 15:23
Re: SA-MP 0.3z RC1 - by xtrapx - 16.01.2014, 15:27
Re: SA-MP 0.3z RC1 - by Basssiiie - 16.01.2014, 15:27
Re: SA-MP 0.3z RC1 - by Grigi - 16.01.2014, 15:28
Re: SA-MP 0.3z RC1 - by MP2 - 16.01.2014, 15:29
Re: SA-MP 0.3z RC1 - by CuervO - 16.01.2014, 15:30
Re: SA-MP 0.3z RC1 - by caoraivoso3 - 16.01.2014, 15:30
Respuesta: SA-MP 0.3z RC1 - by dilo - 16.01.2014, 15:32
Re: SA-MP 0.3z RC1 - by Mauzen - 16.01.2014, 15:32
Re: SA-MP 0.3z RC1 - by CuervO - 16.01.2014, 15:34
Re: SA-MP 0.3z RC1 - by Kyance - 16.01.2014, 15:37
Re: SA-MP 0.3z RC1 - by Jeroen52 - 16.01.2014, 15:42
Re: SA-MP 0.3z RC1 - by CuervO - 16.01.2014, 15:48
Re: SA-MP 0.3z RC1 - by Hiddos - 16.01.2014, 15:52
Re: SA-MP 0.3z RC1 - by ELiiTEJaMzZ - 16.01.2014, 16:30
Re: SA-MP 0.3z RC1 - by RedFusion - 16.01.2014, 16:31
Re: SA-MP 0.3z RC1 - by Crystallize - 16.01.2014, 16:34
Re: SA-MP 0.3z RC1 - by Randy More - 16.01.2014, 16:35
Respuesta: SA-MP 0.3z RC1 - by Swedky - 16.01.2014, 16:36
Re: SA-MP 0.3z RC1 - by Basssiiie - 16.01.2014, 16:39
Respuesta: SA-MP 0.3z RC1 - by EduGTA - 16.01.2014, 16:41
Respuesta: SA-MP 0.3z RC1 - by Caja_negra - 16.01.2014, 16:41
Re: SA-MP 0.3z RC1 - by newbienoob - 16.01.2014, 16:47
Re: SA-MP 0.3z RC1 - by dusk - 16.01.2014, 16:49
Re: Respuesta: SA-MP 0.3z RC1 - by IstuntmanI - 16.01.2014, 16:54
Re: SA-MP 0.3z RC1 - by newbienoob - 16.01.2014, 16:59
Re: SA-MP 0.3z RC1 - by kurta999 - 16.01.2014, 17:01
Re: SA-MP 0.3z RC1 - by ikey07 - 16.01.2014, 17:06
Re: SA-MP 0.3z RC1 - by MarTaTa - 16.01.2014, 17:08
Re: SA-MP 0.3z RC1 - by IstuntmanI - 16.01.2014, 17:09
Re: SA-MP 0.3z RC1 - by Wayland - 16.01.2014, 17:09
Re: SA-MP 0.3z RC1 - by TheRenato3185 - 16.01.2014, 17:10
Re: SA-MP 0.3z RC1 - by Tamer - 16.01.2014, 17:10
Re: SA-MP 0.3z RC1 - by iZN - 16.01.2014, 17:12
Re: SA-MP 0.3z RC1 - by Devil123 - 16.01.2014, 17:28
Re: SA-MP 0.3z RC1 - by Da' J' - 16.01.2014, 18:58
Re: SA-MP 0.3z RC1 - by Swisher - 16.01.2014, 21:11
Re: SA-MP 0.3z RC1 - by goldspy98 - 16.01.2014, 21:15
Re: SA-MP 0.3z RC1 - by PawnoQ - 16.01.2014, 21:19
Respuesta: SA-MP 0.3z RC1 - by Onfroi - 16.01.2014, 21:48
Re: SA-MP 0.3z RC1 - by Kar - 16.01.2014, 21:51
Re: SA-MP 0.3z RC1 - by random123 - 16.01.2014, 22:08
Re: SA-MP 0.3z RC1 - by Mauzen - 16.01.2014, 22:22
Re: SA-MP 0.3z RC1 - by DarkMein - 16.01.2014, 22:28
Re: SA-MP 0.3z RC1 - by TheChimpJr - 16.01.2014, 22:29
Re: SA-MP 0.3z RC1 - by random123 - 16.01.2014, 22:31
Re: SA-MP 0.3z RC1 - by Mauzen - 16.01.2014, 22:36
Re: SA-MP 0.3z RC1 - by [IZ]Kira - 16.01.2014, 22:37
Re: SA-MP 0.3z RC1 - by sparrow89 - 16.01.2014, 23:05
Re: SA-MP 0.3z RC1 - by slayer101 - 16.01.2014, 23:20
Re: SA-MP 0.3z RC2 - by dovyansas - 18.01.2014, 10:06
Re: SA-MP 0.3z RC2 - by MP2 - 18.01.2014, 10:17
Re: SA-MP 0.3z RC2 - by PT - 18.01.2014, 10:46
Re: SA-MP 0.3z RC2 - by Riddick94 - 18.01.2014, 11:32
Re: SA-MP 0.3z RC2 - by [MM]IKKE - 18.01.2014, 12:03
Re: SA-MP 0.3z RC2 - by Riddick94 - 18.01.2014, 12:15
Re: SA-MP 0.3z RC2 - by KROOK - 18.01.2014, 13:12
Re: SA-MP 0.3z RC2 - by Riddick94 - 18.01.2014, 13:17
Re: SA-MP 0.3z RC2 - by FufLa - 18.01.2014, 14:40
Re: SA-MP 0.3z RC2 - by Rachide33 - 18.01.2014, 14:57
Re: SA-MP 0.3z RC2 - by BRabbit - 18.01.2014, 17:45
Re: SA-MP 0.3z RC2 - by FUNExtreme - 18.01.2014, 17:50
Re: SA-MP 0.3z RC2 - by LeGGGeNNdA - 18.01.2014, 17:54
Re: SA-MP 0.3z RC2 - by Jear - 18.01.2014, 17:58
Re: SA-MP 0.3z RC2 - by [WA]iRonan - 18.01.2014, 19:06
Re: SA-MP 0.3z RC2 - by AF1_CLAN - 18.01.2014, 19:13
Re: SA-MP 0.3z RC2 - by [MM]IKKE - 18.01.2014, 20:23
Re: SA-MP 0.3z RC2 - by V1ceC1ty - 18.01.2014, 21:33
Re: SA-MP 0.3z RC2 - by Luis- - 18.01.2014, 21:34
Re: SA-MP 0.3z RC2 - by Admigo - 18.01.2014, 21:38
Re: SA-MP 0.3z RC2 - by Potassium - 19.01.2014, 02:21
Re: SA-MP 0.3z RC2 - by AceShooter - 19.01.2014, 12:22
Re: SA-MP 0.3z RC2 - by LukasLyrics - 19.01.2014, 12:45
Re: SA-MP 0.3z RC2 - by V1ceC1ty - 19.01.2014, 13:30
Re: SA-MP 0.3z RC2 - by [J] - 19.01.2014, 15:21
Re: SA-MP 0.3z RC2 - by LukasLyrics - 19.01.2014, 18:33
Re: SA-MP 0.3z RC2 - by glbracer - 20.01.2014, 01:43
Re: SA-MP 0.3z RC3 - by qazwsx - 22.01.2014, 07:16
Re: SA-MP 0.3z RC3 - by Jeroen52 - 23.01.2014, 14:40
Re: SA-MP 0.3z RC3 - by Mauzen - 23.01.2014, 15:02
Re: SA-MP 0.3z RC3 - by Mauzen - 23.01.2014, 16:37
Re: SA-MP 0.3z RC3 - by Psat - 24.01.2014, 00:04
Re: SA-MP 0.3z RC3 - by [WA]iRonan - 24.01.2014, 05:37
AW: Re: SA-MP 0.3z RC3 - by Mellnik - 24.01.2014, 10:59
Re: SA-MP 0.3z RC3 - by iWhite - 24.01.2014, 12:25
Re: SA-MP 0.3z RC3 - by ViruZz - 24.01.2014, 14:48
Re: SA-MP 0.3z RC3 - by Aliassassin123456 - 24.01.2014, 14:52
Re: SA-MP 0.3z RC3 - by MP2 - 24.01.2014, 15:37
Re: SA-MP 0.3z RC3 - by x96664 - 24.01.2014, 17:54
Re: SA-MP 0.3z RC4 - by eider - 27.01.2014, 10:42
Re: SA-MP 0.3z RC4 - by Mandrakke - 27.01.2014, 10:49
Re: SA-MP 0.3z RC4 - by iJumbo - 27.01.2014, 10:51
Re: SA-MP 0.3z RC4 - by Kyle - 27.01.2014, 11:00
Re: SA-MP 0.3z RC4 - by iJumbo - 27.01.2014, 11:01
Re: SA-MP 0.3z RC4 - by Kyle - 27.01.2014, 11:06
Re: SA-MP 0.3z RC4 - by vyper - 27.01.2014, 11:08
Re: SA-MP 0.3z RC4 - by iJumbo - 27.01.2014, 11:10
Re: SA-MP 0.3z RC4 - by Kyle - 27.01.2014, 11:12
Re: SA-MP 0.3z RC4 - by IstuntmanI - 27.01.2014, 11:21
Re: SA-MP 0.3z RC4 - by YazidAlgeria - 27.01.2014, 11:24
Re: SA-MP 0.3z RC4 - by ikey07 - 27.01.2014, 11:25
Re: SA-MP 0.3z RC4 - by iJumbo - 27.01.2014, 11:41
Re: SA-MP 0.3z RC4 - by AIped - 27.01.2014, 11:52
Re: SA-MP 0.3z RC4 - by Nikid - 27.01.2014, 11:58
Re: SA-MP 0.3z RC4 - by doreto - 27.01.2014, 11:59
Re: SA-MP 0.3z RC4 - by ikey07 - 27.01.2014, 12:17
Re: SA-MP 0.3z RC4 - by 2KY - 27.01.2014, 12:18
Re: SA-MP 0.3z RC4 - by dugi - 27.01.2014, 12:24
Re: SA-MP 0.3z RC4 - by 2KY - 27.01.2014, 12:26
Re: SA-MP 0.3z RC4 - by Deagresiv - 27.01.2014, 14:02
Re: SA-MP 0.3z RC4 - by Tamer - 27.01.2014, 14:05
Re: SA-MP 0.3z RC4 - by [KHK]Khalid - 27.01.2014, 14:17
Re: SA-MP 0.3z RC4 - by Jefff - 27.01.2014, 14:21
Re: SA-MP 0.3z RC4 - by Admigo - 27.01.2014, 14:24
Re: SA-MP 0.3z RC4 - by kurta999 - 27.01.2014, 14:26
Re: SA-MP 0.3z RC4 - by ViruZz - 27.01.2014, 14:32
Re: SA-MP 0.3z RC4 - by LeGGGeNNdA - 27.01.2014, 14:34
Re: AW: Re: AW: Re: SA-MP 0.3z RC4 - by Admigo - 27.01.2014, 14:51
Re: SA-MP 0.3z RC4 - by [J] - 27.01.2014, 14:53
Re: SA-MP 0.3z RC4 - by Jeffry - 27.01.2014, 16:00
Re: SA-MP 0.3z RC4 - by d711728 - 27.01.2014, 16:15
Re: SA-MP 0.3z RC4 - by Joe Staff - 27.01.2014, 16:15
Re : SA-MP 0.3z RC4 - by Elorreli - 27.01.2014, 16:19
Re: SA-MP 0.3z RC4 - by caoraivoso3 - 27.01.2014, 16:19
Re: SA-MP 0.3z RC4 - by ViruZz - 27.01.2014, 17:30
Re: SA-MP 0.3z RC4 - by Rock - 27.01.2014, 17:40
Re: SA-MP 0.3z RC4 - by ViruZz - 27.01.2014, 17:42
Re: SA-MP 0.3z RC4 - by d711728 - 27.01.2014, 18:33
Re : SA-MP 0.3z RC4 - by jujuv - 27.01.2014, 19:34
Re: SA-MP 0.3z RC4 - by Goldenfox - 28.01.2014, 17:59
Respuesta: SA-MP 0.3z RC4 - by Malganys - 01.02.2014, 01:31
Re: SA-MP 0.3z RC4 - by XXJacksug8X - 01.02.2014, 07:48
Re: SA-MP 0.3z RC4 - by Xrenoma - 01.02.2014, 10:50
Re: SA-MP 0.3z RC4 - by Amora187 - 01.02.2014, 13:21
Re: SA-MP 0.3z RC4 - by Reboma - 01.02.2014, 13:24
Re: SA-MP 0.3z RC4 - by [J] - 01.02.2014, 13:48
Re: SA-MP 0.3z RC4 - by FufLa - 01.02.2014, 13:56
Re: SA-MP 0.3z RC4 - by ViruZz - 01.02.2014, 15:17
Re: SA-MP 0.3z RC4 - by Si|ent - 01.02.2014, 18:04
Re: SA-MP 0.3z RC4 - by anou1 - 01.02.2014, 18:37
Re: SA-MP 0.3z RC4 - by eider - 01.02.2014, 20:39
Re: SA-MP 0.3z RC4 - by vincenzo - 01.02.2014, 20:40
Re: SA-MP 0.3z RC4 - by PacoBeanZ - 01.02.2014, 21:21
Re: SA-MP 0.3z RC4 - by Kar - 01.02.2014, 22:00
Re: SA-MP 0.3z RC4 - by Finn - 02.02.2014, 07:06
Re: SA-MP 0.3z RC4 - by Kar - 02.02.2014, 10:19
Re: SA-MP 0.3z RC4 - by Riddick94 - 02.02.2014, 11:03
Re: SA-MP 0.3z RC4 - by Kar - 02.02.2014, 11:28
Re: SA-MP 0.3z RC4 - by TopFuel - 02.02.2014, 12:29
Re: SA-MP 0.3z RC4 - by Kar - 02.02.2014, 19:06
Re: SA-MP 0.3z RC4 - by Pr0GreSiVe - 03.02.2014, 15:03
Re: SA-MP 0.3z RC4 - by Luis- - 03.02.2014, 17:01
Re: SA-MP 0.3z RC4 - by Pottus - 09.02.2014, 01:26
Re: SA-MP 0.3z RC4 - by Warm - 09.02.2014, 08:51
Re: SA-MP 0.3z RC4 - by Typhome - 09.02.2014, 10:56
Re: SA-MP 0.3z RC4 - by RedFusion - 09.02.2014, 11:06
Re: SA-MP 0.3z RC4 - by Xrenoma - 09.02.2014, 11:31
Re: SA-MP 0.3z RC4 - by kurta999 - 09.02.2014, 11:39
Re: SA-MP 0.3z RC4 - by ChrisFarmer - 09.02.2014, 12:07
Re: SA-MP 0.3z RC4 - by Arjanz - 09.02.2014, 12:10
Re: SA-MP 0.3z RC4 - by N0FeaR - 09.02.2014, 14:17
Re: SA-MP 0.3z RC4 - by Warm - 09.02.2014, 16:28
Respuesta: SA-MP 0.3z RC4 - by Kemula - 09.02.2014, 17:11
Re: SA-MP 0.3z RC4 - by Owenlishious - 09.02.2014, 17:44
Respuesta: Re: SA-MP 0.3z RC4 - by Gryphus One - 09.02.2014, 18:06
Re: Respuesta: Re: SA-MP 0.3z RC4 - by Riddick94 - 09.02.2014, 19:49
Re: SA-MP 0.3z RC4 - by eesh - 09.02.2014, 20:12
Re: SA-MP 0.3z RC4 - by AqEeN - 09.02.2014, 20:57
Re: SA-MP 0.3z RC4 - by gtaplayer1 - 09.02.2014, 21:39
Respuesta: SA-MP 0.3z RC4 - by IvanAyuso - 10.02.2014, 20:31
Re: Respuesta: SA-MP 0.3z RC4 - by CJ101 - 10.02.2014, 21:47
Re: SA-MP 0.3z RC5 - by [J] - 11.02.2014, 12:33
Re: SA-MP 0.3z RC5 - by anou1 - 11.02.2014, 12:35
Re: SA-MP 0.3z RC5 - by Riddick94 - 11.02.2014, 12:37
Re: SA-MP 0.3z RC5 - by im - 11.02.2014, 12:37
Re: SA-MP 0.3z RC5 - by Admigo - 11.02.2014, 12:42
Re: SA-MP 0.3z RC5 - by Kyle - 11.02.2014, 12:47
Re: SA-MP 0.3z RC5 - by kooltuO - 11.02.2014, 12:50
Re: SA-MP 0.3z RC5 - by Edvin - 11.02.2014, 12:52
Re: SA-MP 0.3z RC5 - by Cypress - 11.02.2014, 13:29
Re: SA-MP 0.3z RC5 - by pyrodojo25 - 11.02.2014, 13:29
Re: SA-MP 0.3z RC5 - by PT - 11.02.2014, 13:39
Re: SA-MP 0.3z RC5 - by [J] - 11.02.2014, 15:15
Re: SA-MP 0.3z RC5 - by OKStyle - 11.02.2014, 15:41
Re: SA-MP 0.3z RC5 - by Fokus - 11.02.2014, 15:45
Re: SA-MP 0.3z RC5 - by Warm - 11.02.2014, 15:52
Re: SA-MP 0.3z RC5 - by Riddick94 - 11.02.2014, 17:57
Re: SA-MP 0.3z RC5 - by anou1 - 11.02.2014, 18:23
Re: SA-MP 0.3z RC5 - by LeGGGeNNdA - 11.02.2014, 18:25
Re: SA-MP 0.3z RC5 - by iZN - 11.02.2014, 18:29
Re: SA-MP 0.3z RC5 - by Mandrakke - 11.02.2014, 18:50
Re: SA-MP 0.3z RC5 - by Kyle - 11.02.2014, 18:55
Re: SA-MP 0.3z RC5 - by iZN - 11.02.2014, 18:55
AW: Re: SA-MP 0.3z RC5 - by Mellnik - 11.02.2014, 18:57
Re: SA-MP 0.3z RC5 - by BlackBank - 11.02.2014, 19:06
Re: SA-MP 0.3z RC5 - by iZN - 11.02.2014, 19:38
Re : SA-MP 0.3z RC5 - by TGameR - 11.02.2014, 20:21
Re: Re : SA-MP 0.3z RC5 - by iZN - 11.02.2014, 20:53
Re: SA-MP 0.3z RC5 - by v01d - 11.02.2014, 21:39
Re: SA-MP 0.3z RC5 - by Dragony92 - 12.02.2014, 01:18
Respuesta: SA-MP 0.3z RC5 - by Gryphus One - 12.02.2014, 22:10
Re: Respuesta: SA-MP 0.3z RC5 - by Kar - 12.02.2014, 23:34
AW: SA-MP 0.3z RC5 - by BloodyEric - 15.02.2014, 23:21
Respuesta: SA-MP 0.3z RC5 - by dilo - 15.02.2014, 23:42
Re: SA-MP 0.3z RC5 - by dugi - 20.02.2014, 14:01

Forum Jump:


Users browsing this thread: 1 Guest(s)