Suggestions for future SA:MP updates
#2

FadePlayerCamera wouldn't be needed if TextDrawFade was added, and it would need an 'inout' parameter to fade in/out.

TogglePlayerChat wouldn't be a bool parameter, as there are 3 modes (on, no outline and off).
IsPlayerChatShown should be GetPlayerChatMode, because of the reason above.

MovePlayerCamera would need lookat coordinates.

TogglePlayerHead should make the blood come out like when you decapitate peds in single-player, not just make the head disappear.

I've made some changes, with comments added to things I've changed (nothing was removed, only added/improved):

pawn Code:
native Attach3DTextLabelToObject(Text3D:id, objectid, Float:OffsetX, Float:OffsetY, Float:OffsetZ);
native TextDrawFadeInOut(Text:text, fade, time); // Fade: 0=out 1=in
native TogglePlayerInteriorEnterExits(playerid, entrance, bool:toggle); // 'entrance' would be something like ENTRANCE_AMMU, ENTRANCE_PIZZA, etc. (or perhaps coordinates with a radius like RemoveBuildingForPlayer)
native ToggleClientCommand(playerid, command[], bool:toggle); // Toggle the use of a client command, like disabling /save (some people use it to ripoff other servers). Should not work for /quit (/q)
native SetPlayerWayPoint(playerid, Float:x, Float:y, Float:z); // Set the waypoint for a player
native GetPlayerWayPoint(playerid, &Float:x, &Float:y, &Float:z); // Get the player's set waypoint (0, 0, 0 if none)
native GetVehicleParamsEx(vehicleid, &engine, &lights, &alarm, &doors, &bonnet, &boot, &objective, &feature) // Add 'feature' parameter (like the one on the packer, andromada, etc.)
native SetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective, feature); // Add 'feature' parameter (like the one on the packer, andromada, etc.)
native ToggleVehicleBlip(vehicleid, bool:toggle); // Toggle grey blip on radar for a vehicle
native ToggleVehicleBlips(bool:toggle); // Toggle blips for all vehicles
native TogglePlayerTearGasEffect(playerid, bool:toggle);
native ToggleTearGasEffect(bool:toggle);
native Set3DTextLabelSize(Text3D:id, Float:size);
native ShowNameTags(bool:enabled, mode); // Modes: 0 = off, 1 = names, 2 = health/armour, 3 = all
native GetLOS(Float:x, Float:y, Float:z, Float:x2, Float:y2, Float:z2); // Returns the line-of-sight distance between 2 points.
native SetPlayerCheckpoint(playerid, Float:x, Float:y, Float:z, Float:size, color); // Add color parameter
native SetPlayerRaceCheckpoint(playerid, Float:x, Float:y, Float:z, Float:size, color); // Add color parameter
native SetPlayerChatBubble(playerid, text[], color, Float:drawdistance, expiretime, LOS); // Add LOS parameter
native WalkToPos(Float:x, Float:y, Float:z, mode); // Make the NPC walk to a point. The modes are: 0 = walking, 1 = jogging, 2 = sprinting
native CreatePlayerPickup(playerid, model, type, Float:X, Float:Y, Float:Z, Virtualworld)
native ToggleVehicleCollision(vehicleid, bool:toggle);
native ToggleVehicleCollisionForPlayer(playerid, vehicleid, bool:toggle);
native ToggleObjectCollision(objectid, bool:toggle);
native TogglePlayerObjectCollision(playerid, objectid, bool:toggle);
native FadePlayerCamera(playerid, bool:fade, Float:speed); // Not necessarily needed if TextDrawFade is added (though could prevent textdraw limit being used)
native SetWaterLevel(Float:height);
native SetWaveHeight(Float:height);
native GetPlayerCursorPos(playerid, &Float:x, &Float:y);
native GetMouseClickPos(playerid, &Float:x, &Float:y); // What is this meant to do? Same as above..?
native TogglePlayerRadar(playerid, bool:toggle);
native SetPlayerChatMode(playerid, mode); // mode - 0=off 1=on 2=no outline
native GetPlayerChatMode(playerid); // Returns: 0=off 1=on 2=no outline
native SetPlayerCameraLookAtVehicle (playerid, vehicleid);
native SetPlayerCameraLookAtPlayer (playerid, lookatplayerid);
native MovePlayerCamera(playerid, Float:x, Float:y, Float:z, Float:x2, Float:y2, Float:z2, Float:speed);
native SetVehicleHandling(?);
native PutPlayerInCrane(playerid, craneid);
native TogglePlayerSPCheat(playerid, cheatname[], bool:toggle);
native GetTrainDirection(vehicleid); // Returns true if the train is driving clockwise on the train track, false if it is going counterclockwise.
native SetTrainDirection(vehicleid, bool:clockwise);
native GetTrainSpeed(vehicleid, &Float:speed);
native SetTrainSpeed(vehicleid, Float:speed);
native UsePlayerCopShootAnim(); // Needs explanation
native SetPlayerGravity(playerid, Float:gravity);
native SetVehicleGravity(vehicleid, Float:gravity);
native IsPlayerUsingJoypad(playerid);
native TogglePlayerScoreboard(playerid, bool:toggle);
native SetScoreHeader(header[]); // or something similar - changes the 'score' header to header[]
native GetPlayerNoise(playerid, &Float:noise);  // just like in the burgulary missions (callback also)
native ToggleClassSelection(bool:toggle); // Disable class selection (players spawn straight away when joining (unless scripted otherwise))
native TogglePlayerClassSelection(playerid, bool:toggle); // Same as above but for a single player
native SetPlayerID(playerid, id); // Sets the ID of a player. Returns 1 if change was successful, returns 0 if it was unable to complete the request (invalid ID or ID taken)
native GetPlayerLungCapacity(playerid, &Float:capacity);
native SetPlayerLungCapacity(playerid, Float:capacity);
native SetPlayerParamsForPlayer(playerid, forplayerid, objective, color); // basically making objectives in selected color to show above players like in SP
native SetVehicleParamsForPlayer(vehicleid, playerid, objective, color, doorslocked); // being able to choose color of the objective
native TogglePlayerHUD(playerid, component, bool:toggle); // component - 0 - Radar, 1 - Money, 2 - HealthBar, etc.
native SetPlayerGameSpeed(playerid, Float:speed); // Pretty self explanatory, toggles the slow motion effect caused by the pill pickup.
native CreateFaced3DTextLabel(text[], color, Float:x, Float:y, Float:z, Float:angle, Float:drawdistance, virtualworld, LOS);
native TextDrawMove(Text:text, Float:x, Float:y, Float:speed);
native ToggleOcuppiedVehicleDamage(bool:toggle);
native ToggleOcuppiedVehicleDamageForVehicle(vehicleid, bool:toggle);
native ToggleWorldSun(bool:toggle);
native AddScoreboardColumn(name[], position) // Position is the position of the column (like before player id column, after player id column, etc).
native RemoveScoreboardColumn(name[]);
native SetScoreboardColumnValue(playerid, name[], value);
native SendDeathMessageForPlayer(playerid, killer, victim, reason);
native AttachVehicleToObject(vehicleid, objectid);
native ShowPlayerDialog(playerid, dialogid, style, caption[], info[], {Float,_}:...); // Change button1[] and button2[] to allow for 1 or more buttons
native TogglePlayerMouseCursor(playerid, bool:toggle);
native TogglePlayerControllable(playerid, mode) // modes: 0 - controllable 1 - cant move player or camera (current) 2 - can't move but can move camera
native SetPlayerMaxHealth(playerid, Float:health); // If health is above 100, it will increase the healthbar size
native GetPlayerMaxHealth(playerid, &Float:health);
native TogglePlayerSpeedBlur(playerid, bool:toggle);
native ToggleSpeedBlur(bool:toggle);
native ToggleVehicleDamage(vehicleid, bool:toggle); // Works on vacant vehicles too (vacant vehicles set to invincible by default).
native ToggleCombineHarvesterDeath(bool:toggle);
native TogglePlayerHead(playerid, bool:toggle);
native GetPlayerPageSize(playerid);
pawn Code:
forward OnPlayerDamageObject(playerid, objectid, Float:damage, destroyed); // To detect, for example, when a player shoots an explosive barrel (object destruction could/should also be synced with other players)
forward OnPlayerEnterVehicle(playerid, vehicleid, seatid); // Add seatid parameter, and returning 0 should prevent entrance
forward OnPlayerClickPlayer(playerid, clickedplayerid, source); // Add sources: CLICK_SOURCE_CHAT and CLICK_SOURCE_NAMETAG (MP2: how would CLICK_SOURCE_CHAT work when using SendClientMessage for chat as I do in my server (to add IDs)? I'm guessing this would only work for default chat.
forward OnPlayerVend(playerid, oldmoney, newmoney, machinetype);
forward OnPlayerCasinoPlay(playerid, oldmoney, newmoney, casinoid, machinetype); // Machine type is like vending machine, blackjack, etc. casinoid is the casino (4 dragons, casigulas, redsands)
forward OnPlayerRecieveStuntBonus(playerid, amount, details[]); // 'details' contains a string of the details of the stunt, such as distance and height (like GetPlayerNetworkStats)
forward OnPlayerDeath(playerid, killerid, reason, bodypart); // Add bodypart parameter (BODYPART_HEAD, BODYPART_TORSO etc.)
forward OnPlayerMouseClick(playerid, press, buttonid); // Press would be 1 if the button was pressed, 0 if released. buttonid would be LMB, RMB, MMB, etc.
forward OnPlayerShoot(playerid, weaponid, Float:x, Float:y, Float:z); // x y z are where the bullet hits
forward OnVehicleDeath(vehicleid, reason); // Reason would be explosion or water
forward OnEnterExitModShop(playerid, enterexit, interiorid); // returning 0 here will prevent the player from entering
Reply


Messages In This Thread
Future SA-MP Update Suggestions - by Luis- - 07.12.2011, 20:37
Re: Suggestions for future SA:MP updates - by MP2 - 08.12.2011, 07:19
Re: Suggestions for future SA:MP updates - by Luis- - 08.12.2011, 15:05
Re: Suggestions for future SA:MP updates - by Luis- - 08.12.2011, 20:47
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 11.12.2011, 15:37
Re: Suggestions for future SA:MP updates - by Calgon - 11.12.2011, 16:05
Re: Suggestions for future SA:MP updates - by Jack_Rocker - 12.12.2011, 06:29
Re: Suggestions for future SA:MP updates - by Astralis - 12.12.2011, 12:47
Re: Suggestions for future SA:MP updates - by Calgon - 12.12.2011, 14:37
Re: Suggestions for future SA:MP updates - by Infamous - 12.12.2011, 18:16
Re: Suggestions for future SA:MP updates - by Astralis - 12.12.2011, 18:41
Re: Suggestions for future SA:MP updates - by KingHual - 12.12.2011, 20:47
Re: Suggestions for future SA:MP updates - by Calgon - 12.12.2011, 21:01
Re: Suggestions for future SA:MP updates - by KingHual - 12.12.2011, 21:16
Re: Suggestions for future SA:MP updates - by westre - 12.12.2011, 21:25
Re: Suggestions for future SA:MP updates - by KingHual - 12.12.2011, 21:38
Re: Suggestions for future SA:MP updates - by Calgon - 12.12.2011, 21:52
Re: Suggestions for future SA:MP updates - by iTorran - 12.12.2011, 22:23
Respuesta: Suggestions for future SA:MP updates - by [Nikk] - 13.12.2011, 05:25
Re: Suggestions for future SA:MP updates - by Infamous - 13.12.2011, 07:59
Re: Suggestions for future SA:MP updates - by FireCat - 14.12.2011, 14:03
Re: Suggestions for future SA:MP updates - by Sergei - 14.12.2011, 14:17
Re: Suggestions for future SA:MP updates - by iggy1 - 14.12.2011, 14:25
Re: Suggestions for future SA:MP updates - by Voldemort - 14.12.2011, 14:45
Re: Suggestions for future SA:MP updates - by Geryy - 17.12.2011, 11:56
Re: Suggestions for future SA:MP updates - by Mean - 17.12.2011, 13:27
Re: Suggestions for future SA:MP updates - by Calgon - 17.12.2011, 16:30
Re: Suggestions for future SA:MP updates - by Infamous - 17.12.2011, 21:32
Re: Suggestions for future SA:MP updates - by Mean - 17.12.2011, 22:33
Re: Suggestions for future SA:MP updates - by Calgon - 17.12.2011, 23:18
Respuesta: Suggestions for future SA:MP updates - by [Nikk] - 19.12.2011, 11:22
Re: Suggestions for future SA:MP updates - by Astralis - 19.12.2011, 14:22
Re: Suggestions for future SA:MP updates - by Infamous - 19.12.2011, 14:50
Respuesta: Suggestions for future SA:MP updates - by [Nikk] - 20.12.2011, 10:43
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 20.12.2011, 12:11
Re: Suggestions for future SA:MP updates - by aminj - 20.12.2011, 14:20
Re: Suggestions for future SA:MP updates - by Smithy - 22.12.2011, 12:01
Re: Suggestions for future SA:MP updates - by Calgon - 23.12.2011, 08:40
Re: Suggestions for future SA:MP updates - by haydugjr - 23.12.2011, 21:34
AW: Suggestions for future SA:MP updates - by 'Pawno. - 26.12.2011, 15:56
Re: Suggestions for future SA:MP updates - by SA_martin_SK - 05.01.2012, 16:55
Re: Suggestions for future SA:MP updates - by sansko - 05.01.2012, 18:22
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 05.01.2012, 18:50
Re: Suggestions for future SA:MP updates - by Young_Khalifa - 05.01.2012, 22:56
Re: Suggestions for future SA:MP updates - by MP2 - 07.01.2012, 10:23
Re: Suggestions for future SA:MP updates - by MasterB - 07.01.2012, 18:08
Re: Suggestions for future SA:MP updates - by MicroD - 08.01.2012, 10:53
Re: Suggestions for future SA:MP updates - by RadioRockz - 08.01.2012, 10:56
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 08.01.2012, 11:13
Re: Suggestions for future SA:MP updates - by wildcookie007 - 08.01.2012, 11:25
Re: Suggestions for future SA:MP updates - by Hiddos - 21.01.2012, 17:07
Re: Suggestions for future SA:MP updates - by willsuckformoney - 22.01.2012, 19:04
Re: Suggestions for future SA:MP updates - by Tannz0rz - 22.01.2012, 20:25
Respuesta: Suggestions for future SA:MP updates - by Metalface - 23.01.2012, 17:50
Re: Suggestions for future SA:MP updates - by oliverrud - 24.01.2012, 03:14
Re: Suggestions for future SA:MP updates - by MP2 - 24.01.2012, 07:57
Suggestion for textdraw/nametag layering for next SA:MP version - by MP2 - 30.01.2012, 13:47
Re: Suggestions for future SA:MP updates - by willsuckformoney - 02.02.2012, 02:45
Re: Suggestions for future SA:MP updates - by SlashPT - 02.02.2012, 19:51
Re: Suggestions for future SA:MP updates - by Tannz0rz - 02.02.2012, 23:45
Re: Suggestions for future SA:MP updates - by SlashPT - 03.02.2012, 06:52
Re: Suggestions for future SA:MP updates - by FireCat - 05.02.2012, 19:25
Re: Suggestions for future SA:MP updates - by Tannz0rz - 06.02.2012, 15:51
Re: Suggestions for future SA:MP updates - by ғαιιοцт - 09.02.2012, 08:05
Re: Suggestions for future SA:MP updates - by ғαιιοцт - 09.02.2012, 11:59
Re: Suggestions for future SA:MP updates - by heron_br - 09.02.2012, 12:06
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 09.02.2012, 12:11
Re: Suggestions for future SA:MP updates - by DiDok - 10.02.2012, 16:51
Re: Suggestions for future SA:MP updates - by howdythereyall - 10.02.2012, 17:25
Re: Suggestions for future SA:MP updates - by rbN. - 12.02.2012, 14:11
Respuesta: Suggestions for future SA:MP updates - by TheChaoz - 13.02.2012, 03:52
Re: Suggestions for future SA:MP updates - by ғαιιοцт - 13.02.2012, 07:57
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 13.02.2012, 10:34
Respuesta: Suggestions for future SA:MP updates - by [Nikk] - 14.02.2012, 14:03
AW: Suggestions for future SA:MP updates - by Dru - 14.02.2012, 20:49
Re: Suggestions for future SA:MP updates - by demonarn - 15.02.2012, 13:49
Re: Suggestions for future SA:MP updates - by MichaelProPlayer - 22.04.2012, 05:21
Re: Suggestions for future SA:MP updates - by Potassium - 22.04.2012, 09:02
Re: Suggestions for future SA:MP updates - by Logitech90 - 22.04.2012, 09:40
Re: Suggestions for future SA:MP updates - by JTaylor - 22.04.2012, 22:10
Re: Suggestions for future SA:MP updates - by xx360 - 24.04.2012, 17:58
Re: Suggestions for future SA:MP updates - by sim_sima - 24.04.2012, 18:17
Re: Suggestions for future SA:MP updates - by BosteQ - 23.06.2012, 18:14
Re: Suggestions for future SA:MP updates - by MP2 - 23.06.2012, 18:22
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 23.06.2012, 18:30
Re: AW: Suggestions for future SA:MP updates - by [HLF]Southclaw - 25.06.2012, 15:32
Re: Suggestions for future SA:MP updates - by Sanady - 26.06.2012, 11:26
Re: Suggestions for future SA:MP updates - by SuperSimonetti®250 - 29.06.2012, 09:37
AW: Suggestions for future SA:MP updates - by EnzoMortelli - 29.06.2012, 10:05
Re: Suggestions for future SA:MP updates - by Smithy - 29.06.2012, 10:52
Respuesta: AW: Suggestions for future SA:MP updates - by Gryphus One - 29.06.2012, 12:25
Re: Suggestions for future SA:MP updates - by SWEMike - 29.06.2012, 13:52
Re: Suggestions for future SA:MP updates - by adik311 - 29.06.2012, 14:42
Re: Suggestions for future SA:MP updates - by Luis- - 29.06.2012, 14:52
Re: Suggestions for future SA:MP updates - by Kar - 01.07.2012, 20:11
Re: Suggestions for future SA:MP updates - by Dan. - 26.07.2012, 07:54
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 26.07.2012, 09:10
Re: Suggestions for future SA:MP updates - by Rudy_ - 26.07.2012, 09:13
Re: Suggestions for future SA:MP updates - by Ben_Gale - 26.07.2012, 18:19
Re: Suggestions for future SA:MP updates - by Georgi166 - 26.07.2012, 18:31
Re: Suggestions for future SA:MP updates - by Kiets - 26.07.2012, 19:39
Re: Suggestions for future SA:MP updates - by IstuntmanI - 26.07.2012, 19:44
Re: Suggestions for future SA:MP updates - by Pinguinn - 26.07.2012, 19:44
Re: Suggestions for future SA:MP updates - by Kiets - 26.07.2012, 19:51
Re: Suggestions for future SA:MP updates - by IstuntmanI - 26.07.2012, 19:51
Re: Suggestions for future SA:MP updates - by Alexander_Petrov - 26.07.2012, 20:34
Re: Suggestions for future SA:MP updates - by 'Pawno. - 26.07.2012, 20:57
Re: Suggestions for future SA:MP updates - by Roddan - 26.07.2012, 22:24
Re: Suggestions for future SA:MP updates - by [KHK]Khalid - 26.07.2012, 22:39
Re: Suggestions for future SA:MP updates - by IstuntmanI - 27.07.2012, 09:39
Re: AW: Re: Suggestions for future SA:MP updates - by Kiets - 27.07.2012, 10:02
Re: Suggestions for future SA:MP updates - by Brooks123 - 28.07.2012, 04:33
Re: Suggestions for future SA:MP updates - by bogdyutzu - 30.07.2012, 06:34
Re : Suggestions for future SA:MP updates - by pseudonyme - 30.07.2012, 10:08
Re: Suggestions for future SA:MP updates - by Rancho - 30.07.2012, 10:37
Re: Suggestions for future SA:MP updates - by FireCat - 30.07.2012, 10:43
Re: Re : Suggestions for future SA:MP updates - by Singed - 30.07.2012, 10:59
Re: Re : Suggestions for future SA:MP updates - by TheArcher - 30.07.2012, 11:01
Re : Suggestions for future SA:MP updates - by pseudonyme - 30.07.2012, 11:28
Re: Suggestions for future SA:MP updates - by Makaveli93 - 31.07.2012, 02:09
Re: Suggestions for future SA:MP updates - by TheArcher - 31.07.2012, 09:31
Re: Suggestions for future SA:MP updates - by Glimma - 31.07.2012, 10:26
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 31.07.2012, 10:40
Respuesta: Suggestions for future SA:MP updates - by Juan_Viz - 31.07.2012, 12:06
Re : Suggestions for future SA:MP updates - by pseudonyme - 31.07.2012, 12:51
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 31.07.2012, 13:26
Re: Respuesta: Re: Suggestions for future SA:MP updates - by TheArcher - 31.07.2012, 13:30
Respuesta: Re: Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 31.07.2012, 13:35
Re: Respuesta: Re: Respuesta: Re: Suggestions for future SA:MP updates - by TheArcher - 31.07.2012, 14:55
Respuesta: Re: Respuesta: Re: Respuesta: Re: Suggestions for future SA:MP updates - by CaptainMactavish - 31.07.2012, 15:28
Re : Suggestions for future SA:MP updates - by TheSpaggiari - 31.07.2012, 20:05
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 31.07.2012, 21:35
Re: Suggestions for future SA:MP updates - by adik311 - 01.08.2012, 12:03
Re: Suggestions for future SA:MP updates - by IstuntmanI - 01.08.2012, 13:55
Re: Suggestions for future SA:MP updates - by Kar - 01.08.2012, 20:46
Re: Suggestions for future SA:MP updates - by Georgi166 - 01.08.2012, 20:53
Re: Suggestions for future SA:MP updates - by nenum12 - 01.08.2012, 20:56
Re: Suggestions for future SA:MP updates - by RodriguezFais - 03.08.2012, 09:03
Re: Suggestions for future SA:MP updates - by davve95 - 03.08.2012, 17:24
Re: Suggestions for future SA:MP updates - by samiras - 03.08.2012, 19:29
Re: Suggestions for future SA:MP updates - by bogdyutzu - 04.08.2012, 07:34
Re: Suggestions for future SA:MP updates - by EV007 - 04.08.2012, 12:50
Re: Suggestions for future SA:MP updates - by IstuntmanI - 04.08.2012, 12:51
Re: Suggestions for future SA:MP updates - by EV007 - 04.08.2012, 12:56
Re: Suggestions for future SA:MP updates - by Finn - 04.08.2012, 13:39
Re: Suggestions for future SA:MP updates - by sampreader - 02.09.2012, 20:25
Re: Suggestions for future SA:MP updates - by Patrik356b - 02.09.2012, 20:41
Re: Suggestions for future SA:MP updates - by Riddick94 - 02.09.2012, 21:58
Re: Suggestions for future SA:MP updates - by Akira297 - 02.09.2012, 22:03
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 02.09.2012, 22:07
Re: Suggestions for future SA:MP updates - by Basssiiie - 02.09.2012, 22:28
Re: Suggestions for future SA:MP updates - by jpeg - 03.09.2012, 00:09
Re: Suggestions for future SA:MP updates - by ikkentim - 03.09.2012, 00:18
Re: Suggestions for future SA:MP updates - by thefatshizms - 03.09.2012, 01:08
Re: Suggestions for future SA:MP updates - by EliteDrive - 03.09.2012, 01:33
Re: Suggestions for future SA:MP updates - by ikkentim - 15.10.2012, 09:49
Re: Suggestions for future SA:MP updates - by Emmet_ - 15.10.2012, 11:08
Re: Suggestions for future SA:MP updates - by Knight_Rider - 15.10.2012, 11:23
Re: Suggestions for future SA:MP updates - by adik311 - 16.10.2012, 11:24
Re: Suggestions for future SA:MP updates - by Unknownich - 16.10.2012, 11:54
Re: Suggestions for future SA:MP updates - by Timmeyable - 16.10.2012, 14:05
Re : Suggestions for future SA:MP updates - by Yuripe - 17.10.2012, 01:17
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 17.10.2012, 19:14
Re: Suggestions for future SA:MP updates - by DartakousLien - 20.10.2012, 02:52
Re: Suggestions for future SA:MP updates - by Mafioso97 - 20.10.2012, 06:59
Re: Suggestions for future SA:MP updates - by tiernantheman - 21.10.2012, 22:08
Re: Suggestions for future SA:MP updates - by KevinPRINCE - 22.10.2012, 01:20
Re: Suggestions for future SA:MP updates - by willsuckformoney - 22.10.2012, 08:56
Re: Suggestions for future SA:MP updates - by 'Pawno. - 22.10.2012, 10:14
Re: Suggestions for future SA:MP updates - by x96664 - 04.11.2012, 18:54
Re: Suggestions for future SA:MP updates - by IstuntmanI - 04.11.2012, 18:55
Re: Suggestions for future SA:MP updates - by TheArcher - 04.11.2012, 19:08
Re: Suggestions for future SA:MP updates - by Mauzen - 04.11.2012, 19:53
Re: Suggestions for future SA:MP updates - by DartakousLien - 04.11.2012, 22:37
Re: Suggestions for future SA:MP updates - by Mauzen - 04.11.2012, 23:07
Re: Suggestions for future SA:MP updates - by jakejohnsonusa - 04.11.2012, 23:30
Re: Suggestions for future SA:MP updates - by DartakousLien - 05.11.2012, 09:18
Re: Suggestions for future SA:MP updates - by Shayy - 05.11.2012, 11:53
Re: Suggestions for future SA:MP updates - by XtremeR - 05.11.2012, 11:59
Re: Suggestions for future SA:MP updates - by [HK]Ryder[AN] - 05.11.2012, 12:47
Re: Suggestions for future SA:MP updates - by TheArcher - 05.11.2012, 13:08
Re: Suggestions for future SA:MP updates - by Mauzen - 05.11.2012, 13:26
Re: Suggestions for future SA:MP updates - by DartakousLien - 05.11.2012, 17:15
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 05.11.2012, 17:22
Re: Suggestions for future SA:MP updates - by DartakousLien - 05.11.2012, 17:26
Re: Suggestions for future SA:MP updates - by willsuckformoney - 06.11.2012, 00:08
Re: Suggestions for future SA:MP updates - by Zephyr - 06.11.2012, 02:44
Re: Suggestions for future SA:MP updates - by [UE]Milan - 06.11.2012, 13:09
Re: Suggestions for future SA:MP updates - by Mark™ - 06.11.2012, 13:53
Re: Suggestions for future SA:MP updates - by Plovix - 06.11.2012, 14:01
Re: Suggestions for future SA:MP updates - by [UE]Milan - 06.11.2012, 14:04
Re: Suggestions for future SA:MP updates - by Knight_Rider - 06.11.2012, 14:27
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 06.11.2012, 14:53
Re: Suggestions for future SA:MP updates - by Hiddos - 06.11.2012, 15:00
Re: Suggestions for future SA:MP updates - by Skillet` - 06.11.2012, 15:06
Re: Suggestions for future SA:MP updates - by [UE]Milan - 06.11.2012, 16:40
Re: Suggestions for future SA:MP updates - by [RO]Nicusor - 24.11.2012, 18:38
Re: Suggestions for future SA:MP updates - by Riddick94 - 26.11.2012, 18:16
Re: Suggestions for future SA:MP updates - by TheArcher - 26.11.2012, 19:24
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 26.11.2012, 21:09
Respuesta: Re: Suggestions for future SA:MP updates - by Malganys - 18.05.2013, 20:24
Re: Suggestions for future SA:MP updates - by DiGiTaL_AnGeL - 18.05.2013, 21:47
Re: Suggestions for future SA:MP updates - by Plovix - 19.05.2013, 09:11
Re: Suggestions for future SA:MP updates - by DiGiTaL_AnGeL - 19.05.2013, 09:37
Re: Suggestions for future SA:MP updates - by freddy smyth - 19.05.2013, 09:42
Re: Suggestions for future SA:MP updates - by DarkyTheAngel - 19.05.2013, 10:02
Re: Suggestions for future SA:MP updates - by Potassium - 19.05.2013, 10:32
Re: Suggestions for future SA:MP updates - by DarkyTheAngel - 19.05.2013, 10:35
Re: Suggestions for future SA:MP updates - by Sweboy - 19.05.2013, 10:53
Re: Suggestions for future SA:MP updates - by davve95 - 19.05.2013, 14:28
AW: Suggestions for future SA:MP updates - by saixod88 - 05.08.2013, 11:10
Re: Suggestions for future SA:MP updates - by Riddick94 - 05.08.2013, 14:39
Re: Suggestions for future SA:MP updates - by magnusburton - 07.08.2013, 18:22
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 07.08.2013, 22:47
Re: Suggestions for future SA:MP updates - by Cunning - 08.08.2013, 01:38
Re: Suggestions for future SA:MP updates - by BullseyeHawk - 08.08.2013, 02:55
Re: Suggestions for future SA:MP updates - by Sellize - 08.08.2013, 08:55
Re: Suggestions for future SA:MP updates - by Dworkin - 09.08.2013, 01:01
Re: Suggestions for future SA:MP updates - by GWMPT - 11.08.2013, 13:23
Re: Suggestions for future SA:MP updates - by Richie© - 12.08.2013, 20:23
Re: Suggestions for future SA:MP updates - by Kyra - 18.08.2013, 23:31
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 19.08.2013, 00:38
Re: Suggestions for future SA:MP updates - by newbienoob - 19.08.2013, 10:46
Re: Suggestions for future SA:MP updates - by Sasino97 - 19.08.2013, 17:00
Respuesta: Suggestions for future SA:MP updates - by iPawn - 20.08.2013, 20:51
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 20.08.2013, 23:58
Respuesta: Suggestions for future SA:MP updates - by iPawn - 21.08.2013, 03:04
Re: Suggestions for future SA:MP updates - by Dragonsaurus - 21.08.2013, 10:24
Re: Respuesta: Suggestions for future SA:MP updates - by Sanady - 21.08.2013, 11:25
Re : Respuesta: Suggestions for future SA:MP updates - by Vukilore - 24.08.2013, 13:18
Respuesta: Re : Respuesta: Suggestions for future SA:MP updates - by Malganys - 24.08.2013, 15:49
Re: Suggestions for future SA:MP updates - by DanishHaq - 24.08.2013, 15:56
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 25.08.2013, 00:02
Re: Respuesta: Re: Suggestions for future SA:MP updates - by DanishHaq - 25.08.2013, 00:35
Re: Suggestions for future SA:MP updates - by Arshavin_Lopez - 25.08.2013, 06:58
Re: Suggestions for future SA:MP updates - by Jessyy - 25.08.2013, 07:41
Re: Suggestions for future SA:MP updates - by newbienoob - 28.08.2013, 14:49
Re: Suggestions for future SA:MP updates - by tommzy09 - 01.09.2013, 02:40
Re: Suggestions for future SA:MP updates - by Jaxson - 01.09.2013, 06:35
Re: Suggestions for future SA:MP updates - by Fitri - 01.09.2013, 14:54
Re: Suggestions for future SA:MP updates - by Riddick94 - 01.09.2013, 21:10
Re: Suggestions for future SA:MP updates - by Shawn912 - 02.09.2013, 02:07
Re: Suggestions for future SA:MP updates - by Blantas - 02.09.2013, 16:41
Re: Suggestions for future SA:MP updates - by Mennims - 04.09.2013, 04:11
Re: Suggestions for future SA:MP updates - by sanya_gnoy - 04.09.2013, 07:51
Re: Suggestions for future SA:MP updates - by FabianoC - 04.09.2013, 09:38
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 04.09.2013, 23:17
Re: Suggestions for future SA:MP updates - by Scotthall - 05.09.2013, 14:55
Re: Suggestions for future SA:MP updates - by Mauzen - 05.09.2013, 15:41
Re: Respuesta: Suggestions for future SA:MP updates - by kaisersouse - 05.09.2013, 19:28
Re: Suggestions for future SA:MP updates - by GreenSt4lker - 05.09.2013, 19:40
Re: Suggestions for future SA:MP updates - by Ss4gogeta0 - 05.09.2013, 19:44
Re: Suggestions for future SA:MP updates - by MassDivide - 05.09.2013, 20:55
Respuesta: Re: Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 06.09.2013, 11:53
Re: Respuesta: Re: Respuesta: Suggestions for future SA:MP updates - by Plovix - 06.09.2013, 11:56
Re: Suggestions for future SA:MP updates - by adik311 - 09.09.2013, 03:24
Re: Suggestions for future SA:MP updates - by Twizted - 09.09.2013, 09:46
Respuesta: Suggestions for future SA:MP updates - by Malganys - 12.09.2013, 03:46
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 12.09.2013, 10:37
Re: Suggestions for future SA:MP updates - by QuaTTrO - 15.09.2013, 15:47
Re: Suggestions for future SA:MP updates - by TheArcher - 15.09.2013, 16:40
Re: Suggestions for future SA:MP updates - by Mattakil - 15.09.2013, 17:09
Re: Suggestions for future SA:MP updates - by cyber_punk - 16.09.2013, 00:01
Re: Suggestions for future SA:MP updates - by sim_sima - 16.09.2013, 11:53
Re: Suggestions for future SA:MP updates - by adik311 - 17.09.2013, 21:26
Re: Suggestions for future SA:MP updates - by aLTeR - 18.09.2013, 16:19
Respuesta: Re: Suggestions for future SA:MP updates - by Malganys - 18.09.2013, 17:36
Re: Respuesta: Re: Suggestions for future SA:MP updates - by aLTeR - 18.09.2013, 18:27
Re: Suggestions for future SA:MP updates - by Kyra - 18.09.2013, 19:20
Re: Suggestions for future SA:MP updates - by Emmet_ - 18.09.2013, 21:03
Respuesta: Suggestions for future SA:MP updates - by Malganys - 18.09.2013, 21:29
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 19.09.2013, 01:27
Re: Suggestions for future SA:MP updates - by QuaTTrO - 19.09.2013, 20:24
Re: Suggestions for future SA:MP updates - by TheArcher - 19.09.2013, 21:25
Re: Suggestions for future SA:MP updates - by Kyra - 20.09.2013, 22:46
Respuesta: Suggestions for future SA:MP updates - by Malganys - 26.09.2013, 03:22
Re: Suggestions for future SA:MP updates - by Fitri - 26.09.2013, 05:07
Re: Suggestions for future SA:MP updates - by magnusburton - 26.09.2013, 20:02
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 27.09.2013, 01:55
Re: Suggestions for future SA:MP updates - by Steven82 - 27.09.2013, 02:48
Re: Suggestions for future SA:MP updates - by iZN - 27.09.2013, 21:55
Re: Suggestions for future SA:MP updates - by arakuta - 27.09.2013, 22:19
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 28.09.2013, 00:37
Re: Suggestions for future SA:MP updates - by Fitri - 28.09.2013, 02:25
Re: Suggestions for future SA:MP updates - by d711728 - 29.09.2013, 19:20
Re: Suggestions for future SA:MP updates - by =KempeR= - 29.09.2013, 19:50
Respuesta: Suggestions for future SA:MP updates - by Malganys - 30.09.2013, 01:23
Re: Suggestions for future SA:MP updates - by ejb - 30.09.2013, 03:13
Re: Suggestions for future SA:MP updates - by RajatPawar - 30.09.2013, 07:09
Re: Suggestions for future SA:MP updates - by Emmet_ - 11.10.2013, 09:29
Respuesta: Re: Suggestions for future SA:MP updates - by Malganys - 13.10.2013, 03:43
Respuesta: Suggestions for future SA:MP updates - by OTACON - 13.10.2013, 07:22
Respuesta: Suggestions for future SA:MP updates - by Jovazxc - 13.10.2013, 07:38
Re: Respuesta: Suggestions for future SA:MP updates - by DRUNKY - 13.10.2013, 07:46
Re: Suggestions for future SA:MP updates - by sim_sima - 15.10.2013, 17:18
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 15.10.2013, 17:26
Re: Respuesta: Re: Suggestions for future SA:MP updates - by sim_sima - 15.10.2013, 19:42
Respuesta: Suggestions for future SA:MP updates - by adri1 - 15.10.2013, 20:03
Re: Suggestions for future SA:MP updates - by DanishHaq - 15.10.2013, 20:20
Re: Suggestions for future SA:MP updates - by PT - 15.10.2013, 20:34
Re: Suggestions for future SA:MP updates - by EvanA - 15.10.2013, 21:07
Re: Suggestions for future SA:MP updates - by Juniiro3 - 15.10.2013, 21:56
Re: Suggestions for future SA:MP updates - by Don_Speed - 15.10.2013, 21:57
Re: Suggestions for future SA:MP updates - by davve95 - 16.10.2013, 10:32
Re: Suggestions for future SA:MP updates - by DanishHaq - 16.10.2013, 11:28
Re: Suggestions for future SA:MP updates - by doreto - 16.10.2013, 11:40
Re: Suggestions for future SA:MP updates - by Sublime - 16.10.2013, 13:32
Respuesta: Suggestions for future SA:MP updates - by Malganys - 19.10.2013, 08:56
Re: Suggestions for future SA:MP updates - by Spliffy - 20.10.2013, 23:07
Re: Suggestions for future SA:MP updates - by CJ101 - 28.10.2013, 15:53
Respuesta: Suggestions for future SA:MP updates - by Malganys - 31.10.2013, 07:13
Re: Respuesta: Suggestions for future SA:MP updates - by Sublime - 31.10.2013, 07:50
Respuesta: Re: Respuesta: Suggestions for future SA:MP updates - by Malganys - 31.10.2013, 07:54
Re: Suggestions for future SA:MP updates - by XSR - 02.11.2013, 16:30
Re: Suggestions for future SA:MP updates - by =KempeR= - 02.11.2013, 18:25
Re: Suggestions for future SA:MP updates - by Tamer - 02.11.2013, 19:52
Re: Suggestions for future SA:MP updates - by Kindred - 03.11.2013, 07:54
Respuesta: Re: Suggestions for future SA:MP updates - by Malganys - 03.11.2013, 08:58
Re: Suggestions for future SA:MP updates - by Wazer - 03.11.2013, 14:18
Re: Suggestions for future SA:MP updates - by iFiras - 04.11.2013, 14:38
Respuesta: Re: Suggestions for future SA:MP updates - by Malganys - 04.11.2013, 15:19
Re: Suggestions for future SA:MP updates - by newbienoob - 05.11.2013, 11:30
Re: Suggestions for future SA:MP updates - by LeaveMe - 11.11.2013, 06:13
Re: Suggestions for future SA:MP updates - by [WA]iRonan - 11.11.2013, 06:52
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 11.11.2013, 15:54
Re: Suggestions for future SA:MP updates - by Tellken - 15.11.2013, 07:34
AW: Re: Suggestions for future SA:MP updates - by Drebin - 15.11.2013, 08:32
Re: Suggestions for future SA:MP updates - by newbie scripter - 15.11.2013, 13:44
Re: Suggestions for future SA:MP updates - by Deduction - 20.12.2013, 01:08
Re: Suggestions for future SA:MP updates - by davve95 - 20.12.2013, 20:44
Re: Suggestions for future SA:MP updates - by Alec - 24.12.2013, 07:03
Re: Suggestions for future SA:MP updates - by [DK]Dark_Knight - 24.12.2013, 07:32
Re: Suggestions for future SA:MP updates - by EdwardOwen - 24.12.2013, 07:53
Re: Suggestions for future SA:MP updates - by MpK - 25.12.2013, 02:23
Re: Suggestions for future SA:MP updates - by doreto - 25.12.2013, 15:59
Re: Suggestions for future SA:MP updates - by gotwarzone - 26.12.2013, 04:24
Re: Suggestions for future SA:MP updates - by Wazer - 26.12.2013, 08:41
Re: Suggestions for future SA:MP updates - by Battlezone - 26.12.2013, 09:38
Re : Suggestions for future SA:MP updates - by Kyra - 27.12.2013, 12:19
Re: Suggestions for future SA:MP updates - by Twizted - 27.12.2013, 13:18
ESC menu without pausing the game - by Whizion - 08.01.2014, 11:21
Re: Suggestions for future SA:MP updates - by Henkie - 08.01.2014, 13:12
Re: Suggestions for future SA:MP updates - by Hansrutger - 08.01.2014, 14:24
Re: Suggestions for future SA:MP updates - by ivanVU - 08.01.2014, 14:43
Re: Suggestions for future SA:MP updates - by GiamPy. - 08.01.2014, 20:36
Re: Suggestions for future SA:MP updates - by ic3cr3am - 08.01.2014, 21:01
Re: Suggestions for future SA:MP updates - by ic3cr3am - 08.01.2014, 21:07
Re: Suggestions for future SA:MP updates - by SeV_ - 09.01.2014, 21:52
Re: Suggestions for future SA:MP updates - by Baboon - 09.01.2014, 22:10
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 10.01.2014, 01:42
Re: Suggestions for future SA:MP updates - by ic3cr3am - 10.01.2014, 14:28
Re: Suggestions for future SA:MP updates - by ic3cr3am - 10.01.2014, 14:33
Re: Suggestions for future SA:MP updates - by Kyra - 10.01.2014, 15:11
Re: Suggestions for future SA:MP updates - by [WA]iRonan - 10.01.2014, 15:33
Re: Suggestions for future SA:MP updates - by maddinat0r - 10.01.2014, 19:25
Re: Suggestions for future SA:MP updates - by maddinat0r - 27.01.2014, 16:20
Re: Suggestions for future SA:MP updates - by xZdadyZx - 27.01.2014, 18:03
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 27.01.2014, 18:22
Re: Suggestions for future SA:MP updates - by pyrodojo25 - 27.01.2014, 20:13
Re: Suggestions for future SA:MP updates - by KubiPL - 12.02.2014, 07:21
Re : Suggestions for future SA:MP updates - by Kilou - 12.02.2014, 12:43
Re: Suggestions for future SA:MP updates - by FizzyCZ - 12.02.2014, 12:52
Re: Suggestions for future SA:MP updates - by 'Pawno. - 12.02.2014, 13:47
Re : Re: Suggestions for future SA:MP updates - by Kilou - 12.02.2014, 14:20
Re: Suggestions for future SA:MP updates - by SimonItaly - 12.02.2014, 14:30
Re: Suggestions for future SA:MP updates - by KubiPL - 14.02.2014, 11:29
Re: Suggestions for future SA:MP updates - by newbienoob - 15.02.2014, 05:33
Re: Suggestions for future SA:MP updates - by B-Matt - 15.02.2014, 18:08
Re : Re: Suggestions for future SA:MP updates - by Elorreli - 15.02.2014, 18:33
Re: Suggestions for future SA:MP updates - by newbienoob - 15.02.2014, 18:42
Re: Suggestions for future SA:MP updates - by Tellken - 15.02.2014, 19:06
Re: Suggestions for future SA:MP updates - by CuervO - 16.02.2014, 10:08
Re: Suggestions for future SA:MP updates - by Kar - 22.03.2014, 18:52
Re: Suggestions for future SA:MP updates - by Onfroi - 23.03.2014, 01:30
Re: Suggestions for future SA:MP updates - by Aleya - 24.03.2014, 10:07
Re: Suggestions for future SA:MP updates - by Abagail - 30.03.2014, 11:27
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 30.03.2014, 11:44
Re: Suggestions for future SA:MP updates - by Djole1337 - 30.03.2014, 12:17
Re: Suggestions for future SA:MP updates - by RajatPawar - 30.03.2014, 12:24
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 30.03.2014, 12:41
Re: Suggestions for future SA:MP updates - by Abagail - 30.03.2014, 13:00
Re: Suggestions for future SA:MP updates - by QuaTTrO - 30.03.2014, 14:39
Re: Suggestions for future SA:MP updates - by Abagail - 30.03.2014, 18:03
Respuesta: Suggestions for future SA:MP updates - by Gryphus One - 30.03.2014, 23:57
Re: Respuesta: Suggestions for future SA:MP updates - by [HLF]Southclaw - 31.03.2014, 00:19
Re: Suggestions for future SA:MP updates - by KermitTheMysteryFrog - 31.03.2014, 10:04
Re: Suggestions for future SA:MP updates - by Battlezone - 31.03.2014, 18:24
Respuesta: Suggestions for future SA:MP updates - by IvanAyuso - 31.03.2014, 19:54
Re: Suggestions for future SA:MP updates - by davve95 - 31.03.2014, 20:24
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 31.03.2014, 20:48
Re: Suggestions for future SA:MP updates - by MBilal - 31.03.2014, 21:28
AW: Suggestions for future SA:MP updates - by Useryy - 01.04.2014, 21:12
Re: Suggestions for future SA:MP updates - by ChristianIvann09 - 04.04.2014, 08:36
Re: Suggestions for future SA:MP updates - by StuartD - 04.04.2014, 13:05
Re: Suggestions for future SA:MP updates - by Yves - 04.04.2014, 13:19
Re: Suggestions for future SA:MP updates - by Dragonsaurus - 04.04.2014, 13:46
Re: Suggestions for future SA:MP updates - by KubiPL - 06.04.2014, 16:14
Respuesta: Suggestions for future SA:MP updates - by Tellken - 07.04.2014, 22:54
Re: Suggestions for future SA:MP updates - by RajatPawar - 08.04.2014, 05:57
Re: Suggestions for future SA:MP updates - by Abagail - 08.04.2014, 16:26
Re: Suggestions for future SA:MP updates - by KubiPL - 11.04.2014, 14:24
Re: Suggestions for future SA:MP updates - by newbie scripter - 11.04.2014, 14:56
Re: Suggestions for future SA:MP updates - by Onfroi - 11.04.2014, 22:48
Re: Suggestions for future SA:MP updates - by JackC - 21.04.2014, 22:50
Re: Suggestions for future SA:MP updates - by Abagail - 13.05.2014, 16:31
Re: Suggestions for future SA:MP updates - by iFarbod - 15.05.2014, 07:39
Re: Suggestions for future SA:MP updates - by Riddick94 - 15.05.2014, 14:13
Re: Suggestions for future SA:MP updates - by KubiPL - 15.05.2014, 16:09
Re: Suggestions for future SA:MP updates - by Riddick94 - 15.05.2014, 18:09
Re: Suggestions for future SA:MP updates - by YoDawg - 15.05.2014, 19:22
Re: Suggestions for future SA:MP updates - by Kar - 16.05.2014, 03:17
Re: Suggestions for future SA:MP updates - by KevinPRINCE - 16.05.2014, 03:18
Re: Suggestions for future SA:MP updates - by Emmet_ - 16.05.2014, 05:57
Re: Suggestions for future SA:MP updates - by Lordzy - 16.05.2014, 06:14
Re: Suggestions for future SA:MP updates - by Meyokie - 19.05.2014, 09:30
Re: Suggestions for future SA:MP updates - by zaibaslr2 - 20.05.2014, 15:21
Re: Suggestions for future SA:MP updates - by iFarbod - 24.05.2014, 11:15
Re: Suggestions for future SA:MP updates - by Parallex - 25.05.2014, 04:22
Re: Suggestions for future SA:MP updates - by RajatPawar - 25.05.2014, 04:41
Re: Suggestions for future SA:MP updates - by dawix487 - 26.05.2014, 15:34
Re: Suggestions for future SA:MP updates - by Vince - 26.05.2014, 17:28
Re: Suggestions for future SA:MP updates - by EdwardOwen - 26.05.2014, 20:30
Re: Suggestions for future SA:MP updates - by iFarbod - 27.05.2014, 12:27
Re: Suggestions for future SA:MP updates - by RajatPawar - 27.05.2014, 12:44
AW: Suggestions for future SA:MP updates - by Oskaar1994 - 16.06.2014, 10:05
Re: AW: Suggestions for future SA:MP updates - by Abagail - 16.06.2014, 15:38
Re: Suggestions for future SA:MP updates - by Manyula - 06.07.2014, 10:26
Re: Suggestions for future SA:MP updates - by iFarbod - 06.07.2014, 12:55
Re: Suggestions for future SA:MP updates - by nmader - 06.07.2014, 22:43
Re: Suggestions for future SA:MP updates - by Battlezone - 07.07.2014, 01:29
Re: Suggestions for future SA:MP updates - by Onfroi - 07.07.2014, 03:28
Re: Suggestions for future SA:MP updates - by iFarbod - 07.07.2014, 13:25
Re: Suggestions for future SA:MP updates - by nickdodd25 - 07.07.2014, 15:10
Re: Suggestions for future SA:MP updates - by [HLF]Southclaw - 07.07.2014, 15:13
Re: Suggestions for future SA:MP updates - by Abagail - 07.07.2014, 15:24
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 07.07.2014, 22:40
Re: Suggestions for future SA:MP updates - by DavidKember - 08.07.2014, 15:13
Re: Suggestions for future SA:MP updates - by Amora187 - 09.07.2014, 03:51
Re: Suggestions for future SA:MP updates - by Juvanii - 09.07.2014, 05:15
Re: Suggestions for future SA:MP updates - by Snipa - 09.07.2014, 13:49
Re: Suggestions for future SA:MP updates - by Abagail - 09.07.2014, 14:21
Re: Suggestions for future SA:MP updates - by Jack Bauer - 09.07.2014, 14:45
Re: Suggestions for future SA:MP updates - by Khanz - 10.07.2014, 20:13
Re: Suggestions for future SA:MP updates - by Battlezone - 10.07.2014, 20:33
Re: Suggestions for future SA:MP updates - by Khanz - 12.07.2014, 01:18
Re: Respuesta: Re: Suggestions for future SA:MP updates - by Khanz - 12.07.2014, 09:54
Re: Suggestions for future SA:MP updates - by n0minal - 21.07.2014, 20:25
Re: Suggestions for future SA:MP updates - by AIped - 21.07.2014, 20:50
Re: Suggestions for future SA:MP updates - by Fokus - 23.07.2014, 14:23
Re: Suggestions for future SA:MP updates - by Romz - 23.07.2014, 14:28
Re: Suggestions for future SA:MP updates - by iFarbod - 23.07.2014, 16:04
Re: Suggestions for future SA:MP updates - by zT KiNgKoNg - 23.07.2014, 20:15
Re: Suggestions for future SA:MP updates - by iFarbod - 24.07.2014, 08:59
Re: Suggestions for future SA:MP updates - by davve95 - 24.07.2014, 09:36
Re: Suggestions for future SA:MP updates - by iFarbod - 07.08.2014, 12:32
Re: Suggestions for future SA:MP updates - by Lordzy - 07.08.2014, 15:34
Re: Suggestions for future SA:MP updates - by Pawnify - 25.08.2014, 12:42
Re: Suggestions for future SA:MP updates - by Kane_Phoenix - 08.10.2014, 00:29
Re: Suggestions for future SA:MP updates - by clausfromsamp - 08.10.2014, 12:41
Respuesta: Suggestions for future SA:MP updates - by Tellken - 10.10.2014, 02:02
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 12.10.2014, 01:13
Re: Suggestions for future SA:MP updates - by okil - 12.10.2014, 06:30
Re: Suggestions for future SA:MP updates - by Snowshoe - 25.10.2014, 01:20
Re: Suggestions for future SA:MP updates - by n0minal - 25.10.2014, 02:13
Re: Suggestions for future SA:MP updates - by DavidKember - 25.10.2014, 08:24
AW: Suggestions for future SA:MP updates - by Infra - 25.10.2014, 10:32
Re: AW: Suggestions for future SA:MP updates - by n0minal - 27.10.2014, 15:42
Re: Suggestions for future SA:MP updates - by Glossy42O - 05.11.2014, 16:38
Re: Suggestions for future SA:MP updates - by Steel_ - 05.11.2014, 19:15
Re: Suggestions for future SA:MP updates - by n0minal - 05.11.2014, 19:54
Re: Suggestions for future SA:MP updates - by Abagail - 05.11.2014, 20:11
Re: Suggestions for future SA:MP updates - by LocMax - 09.11.2014, 07:05
Re: Suggestions for future SA:MP updates - by DiDok - 10.11.2014, 12:54
Re: Suggestions for future SA:MP updates - by thefatshizms - 10.11.2014, 13:33
Re: Suggestions for future SA:MP updates - by OG Killo - 10.11.2014, 19:59
Re: Suggestions for future SA:MP updates - by Toxik - 12.11.2014, 06:06
Re: Suggestions for future SA:MP updates - by davve95 - 14.11.2014, 21:10
Re: Suggestions for future SA:MP updates - by iFarbod - 17.11.2014, 12:52
Re: Suggestions for future SA:MP updates - by DiDok - 18.11.2014, 13:55
Re: Suggestions for future SA:MP updates - by Blast3r - 18.11.2014, 14:24
Re: Suggestions for future SA:MP updates - by vannesenn - 18.11.2014, 17:16
Re: Suggestions for future SA:MP updates - by Blast3r - 18.11.2014, 20:58
Re: Suggestions for future SA:MP updates - by Abagail - 18.11.2014, 21:03
Re: Suggestions for future SA:MP updates - by feheristi97 - 18.11.2014, 21:22
Re: Suggestions for future SA:MP updates - by vannesenn - 18.11.2014, 21:24
Re: Suggestions for future SA:MP updates - by Blast3r - 18.11.2014, 21:42
Re: Suggestions for future SA:MP updates - by GreenSt4lker - 18.11.2014, 21:42
Re: Suggestions for future SA:MP updates - by Zalance - 19.11.2014, 01:35
Re: Suggestions for future SA:MP updates - by Glossy42O - 19.11.2014, 13:44
Re: Suggestions for future SA:MP updates - by n0minal - 19.11.2014, 14:16
Re: Suggestions for future SA:MP updates - by Krest - 19.11.2014, 15:42
Respuesta: Suggestions for future SA:MP updates - by adri1 - 19.11.2014, 20:36
Re: Suggestions for future SA:MP updates - by varrojames - 30.11.2014, 17:27
Re: Suggestions for future SA:MP updates - by Craig3412 - 09.12.2014, 19:55
Re: Suggestions for future SA:MP updates - by Manyula - 09.12.2014, 21:23
Re: Suggestions for future SA:MP updates - by Aira - 11.12.2014, 01:26
AW: Suggestions for future SA:MP updates - by Infra - 13.12.2014, 19:25
Re: Suggestions for future SA:MP updates - by Orma - 19.12.2014, 01:07
Re: AW: Suggestions for future SA:MP updates - by Privies - 20.12.2014, 20:04
Respuesta: Re: Suggestions for future SA:MP updates - by Gryphus One - 22.12.2014, 01:34
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 22.12.2014, 13:12
Re: Suggestions for future SA:MP updates - by Orma - 22.12.2014, 15:06
Re: Suggestions for future SA:MP updates - by Blast3r - 22.12.2014, 15:18
Re: Suggestions for future SA:MP updates - by ikkentim - 17.01.2015, 23:55
Re: Suggestions for future SA:MP updates - by Kar - 18.01.2015, 02:20
Re: Suggestions for future SA:MP updates - by n0minal - 18.01.2015, 02:28
AW: Suggestions for future SA:MP updates - by LadyNyuuu - 18.01.2015, 03:45
Re: Suggestions for future SA:MP updates - by Lordzy - 18.01.2015, 04:05
Re: Suggestions for future SA:MP updates - by stabker - 18.01.2015, 10:15
Re: Suggestions for future SA:MP updates - by OKStyle - 18.01.2015, 11:39
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 18.01.2015, 13:03
Re: Suggestions for future SA:MP updates - by slayer101 - 18.01.2015, 13:25
Re: Suggestions for future SA:MP updates - by JaydenJason - 18.01.2015, 13:39
Re: Suggestions for future SA:MP updates - by AndreiOptyck - 26.04.2015, 10:47
Re: Suggestions for future SA:MP updates - by BGTrucker - 26.04.2015, 13:27
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 26.04.2015, 17:18
Re: Suggestions for future SA:MP updates - by BGTrucker - 26.04.2015, 18:26
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 27.04.2015, 05:19
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 27.04.2015, 06:44
Re: Suggestions for future SA:MP updates - by vannesenn - 01.05.2015, 15:23
Re: Suggestions for future SA:MP updates - by BGTrucker - 01.05.2015, 15:38
Re: Suggestions for future SA:MP updates - by vannesenn - 01.05.2015, 16:01
Re: Suggestions for future SA:MP updates - by BGTrucker - 01.05.2015, 16:34
AW: Suggestions for future SA:MP updates - by Infra - 02.05.2015, 10:00
Re: AW: Suggestions for future SA:MP updates - by BGTrucker - 02.05.2015, 10:13
Re: Suggestions for future SA:MP updates - by vannesenn - 02.05.2015, 10:20
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 02.05.2015, 13:50
Re: Suggestions for future SA:MP updates - by Sergei - 02.05.2015, 14:23
Re: Suggestions for future SA:MP updates - by vannesenn - 02.05.2015, 14:53
Re: Suggestions for future SA:MP updates - by Sergei - 02.05.2015, 14:57
Re: Suggestions for future SA:MP updates - by vannesenn - 02.05.2015, 15:30
Re: Suggestions for future SA:MP updates - by Infinity - 02.05.2015, 15:35
Re: Suggestions for future SA:MP updates - by Orma - 07.05.2015, 11:56
Re: Suggestions for future SA:MP updates - by OKStyle - 07.05.2015, 17:02
Re: Suggestions for future SA:MP updates - by Emmet_ - 07.05.2015, 19:52
Re: Suggestions for future SA:MP updates - by Puppy - 07.05.2015, 20:01
Re: Suggestions for future SA:MP updates - by SlickSpencer8 - 07.05.2015, 20:06
Re: Suggestions for future SA:MP updates - by Sasino97 - 07.05.2015, 21:11
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 08.05.2015, 01:45
Re: Suggestions for future SA:MP updates - by OKStyle - 08.05.2015, 03:59
Re: Suggestions for future SA:MP updates - by Infamous - 08.05.2015, 04:02
Re: Suggestions for future SA:MP updates - by tommzy09 - 08.05.2015, 04:07
Re: Suggestions for future SA:MP updates - by BGTrucker - 08.05.2015, 04:16
Re: Suggestions for future SA:MP updates - by GreenSt4lker - 08.05.2015, 11:22
Re: Suggestions for future SA:MP updates - by J0sh... - 08.05.2015, 11:31
Re: Suggestions for future SA:MP updates - by Orma - 08.05.2015, 11:58
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 08.05.2015, 17:35
Re: Suggestions for future SA:MP updates - by Battlezone - 08.05.2015, 22:12
AW: Suggestions for future SA:MP updates - by Infra - 09.05.2015, 13:22
Re: Suggestions for future SA:MP updates - by Orma - 09.05.2015, 13:24
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 09.05.2015, 13:56
Re: Suggestions for future SA:MP updates - by Orma - 09.05.2015, 14:29
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 09.05.2015, 15:29
Re: Suggestions for future SA:MP updates - by Abagail - 09.05.2015, 17:45
Re: Suggestions for future SA:MP updates - by Emmet_ - 15.05.2015, 16:21
Re: Suggestions for future SA:MP updates - by sammp - 15.05.2015, 22:32
Re: Suggestions for future SA:MP updates - by Infamous - 17.05.2015, 08:14
Re: Suggestions for future SA:MP updates - by OKStyle - 17.05.2015, 10:43
Re: Suggestions for future SA:MP updates - by Manolito - 18.05.2015, 11:26
Re: Suggestions for future SA:MP updates - by Infamous - 20.05.2015, 05:50
Re: Suggestions for future SA:MP updates - by Tomboeg - 20.05.2015, 07:50
Re: Suggestions for future SA:MP updates - by Abagail - 25.05.2015, 00:06
Respuesta: Suggestions for future SA:MP updates - by HarlemSAMP - 25.05.2015, 14:14
Re: Respuesta: Suggestions for future SA:MP updates - by Luis- - 25.05.2015, 19:26
Re: Suggestions for future SA:MP updates - by Jonggol - 26.05.2015, 04:29
Re: Suggestions for future SA:MP updates - by XinBZone - 28.05.2015, 16:54
Re: Suggestions for future SA:MP updates - by BGTrucker - 28.05.2015, 18:26
Re: Suggestions for future SA:MP updates - by Darkwood17 - 28.05.2015, 19:40
Re: Suggestions for future SA:MP updates - by Emmet_ - 28.05.2015, 23:15
Re: Suggestions for future SA:MP updates - by iNorton - 28.05.2015, 23:45
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 29.05.2015, 01:16
Re: Suggestions for future SA:MP updates - by iNorton - 29.05.2015, 01:22
Re: Suggestions for future SA:MP updates - by Krest - 29.05.2015, 04:38
Re: Suggestions for future SA:MP updates - by Abagail - 01.06.2015, 01:27
Re: Suggestions for future SA:MP updates - by Unrea1 - 01.06.2015, 02:21
Re: Suggestions for future SA:MP updates - by Abagail - 01.06.2015, 02:27
Re: Suggestions for future SA:MP updates - by Unrea1 - 01.06.2015, 02:31
Re: Suggestions for future SA:MP updates - by Abagail - 01.06.2015, 02:44
Re: Suggestions for future SA:MP updates - by SickAttack - 01.06.2015, 02:45
Re: Suggestions for future SA:MP updates - by Abagail - 01.06.2015, 02:55
Re: Suggestions for future SA:MP updates - by Konverse - 01.06.2015, 07:28
Re: Suggestions for future SA:MP updates - by Orma - 01.06.2015, 08:38
AW: Suggestions for future SA:MP updates - by FSAOskar - 01.06.2015, 13:34
Re: Suggestions for future SA:MP updates - by Abagail - 01.06.2015, 21:21
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 02.06.2015, 00:44
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 03.06.2015, 18:29
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 03.06.2015, 20:03
Re: Suggestions for future SA:MP updates - by Richie© - 03.06.2015, 21:32
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 03.06.2015, 21:42
Re: Suggestions for future SA:MP updates - by Rancho - 05.06.2015, 16:29
Re: Suggestions for future SA:MP updates - by AnnaSB - 07.06.2015, 11:06
Re: Suggestions for future SA:MP updates - by AnnaSB - 07.06.2015, 11:10
Re: Suggestions for future SA:MP updates - by Abagail - 07.06.2015, 13:12
Re: Suggestions for future SA:MP updates - by Rancho - 16.06.2015, 13:32
Re: Suggestions for future SA:MP updates - by Crayder - 17.06.2015, 00:54
Re: Suggestions for future SA:MP updates - by Emmet_ - 17.06.2015, 04:43
Re: Suggestions for future SA:MP updates - by Cookland - 17.06.2015, 06:20
Re: Suggestions for future SA:MP updates - by Crayder - 18.06.2015, 20:41
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 19.06.2015, 00:43
Re: Suggestions for future SA:MP updates - by Crayder - 19.06.2015, 10:58
Re: Suggestions for future SA:MP updates - by stabker - 19.06.2015, 17:48
Re: Suggestions for future SA:MP updates - by Abagail - 19.06.2015, 20:33
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 20.06.2015, 01:41
Re: Suggestions for future SA:MP updates - by Crayder - 20.06.2015, 02:21
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 20.06.2015, 03:48
Re: Suggestions for future SA:MP updates - by Crayder - 20.06.2015, 15:15
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 20.06.2015, 19:00
Re: Suggestions for future SA:MP updates - by Crayder - 20.06.2015, 19:44
Re: Suggestions for future SA:MP updates - by Schiffer - 21.06.2015, 04:22
Re: Suggestions for future SA:MP updates - by Larceny - 24.06.2015, 11:45
Re: Suggestions for future SA:MP updates - by Abagail - 24.06.2015, 16:25
Re: Suggestions for future SA:MP updates - by Orma - 27.06.2015, 02:58
Re: Suggestions for future SA:MP updates - by !damo!spiderman - 02.07.2015, 06:10
Re: Suggestions for future SA:MP updates - by dionisak0s - 08.07.2015, 03:38
Re: Suggestions for future SA:MP updates - by Konverse - 08.07.2015, 03:59
Re: Suggestions for future SA:MP updates - by Oh - 09.07.2015, 00:43
Re: Suggestions for future SA:MP updates - by Emmet_ - 11.07.2015, 06:08
Re: Suggestions for future SA:MP updates - by n0minal - 11.07.2015, 06:24
Re: Suggestions for future SA:MP updates - by Saddin - 11.07.2015, 14:58
Re: Suggestions for future SA:MP updates - by cnoopers - 12.07.2015, 08:51
Respuesta: Suggestions for future SA:MP updates - by Leon9741 - 25.07.2015, 15:59
Re: Respuesta: Suggestions for future SA:MP updates - by Orsini24 - 25.07.2015, 16:17
Re: Suggestions for future SA:MP updates - by GWMPT - 25.07.2015, 16:50
Re: Suggestions for future SA:MP updates - by Quattro2007 - 25.07.2015, 20:17
Re: Suggestions for future SA:MP updates - by Crayder - 25.07.2015, 20:43
Re: Suggestions for future SA:MP updates - by SickAttack - 25.07.2015, 20:49
Re: Suggestions for future SA:MP updates - by Romz - 27.07.2015, 05:21
Re: Suggestions for future SA:MP updates - by Dairyll - 27.07.2015, 07:35
Re: Suggestions for future SA:MP updates - by KingHual - 27.07.2015, 07:51
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 04.08.2015, 01:28
Re: Suggestions for future SA:MP updates - by Abagail - 04.08.2015, 01:39
AW: Suggestions for future SA:MP updates - by Infra - 04.08.2015, 01:58
Re: Suggestions for future SA:MP updates - by Saddin - 07.08.2015, 15:47
Re: Suggestions for future SA:MP updates - by Battlezone - 07.08.2015, 16:24
Re: Suggestions for future SA:MP updates - by adik311 - 22.08.2015, 20:36
Re: Suggestions for future SA:MP updates - by BGTrucker - 23.08.2015, 03:55
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 23.08.2015, 07:25
Re: Suggestions for future SA:MP updates - by Cookland - 23.08.2015, 10:47
Re: Suggestions for future SA:MP updates - by BGTrucker - 23.08.2015, 10:58
Re: Suggestions for future SA:MP updates - by thaKing - 23.08.2015, 12:54
Re: Suggestions for future SA:MP updates - by Crayder - 23.08.2015, 14:10
Re: Suggestions for future SA:MP updates - by Abagail - 23.08.2015, 14:54
Re: Suggestions for future SA:MP updates - by davve95 - 23.08.2015, 15:54
Re: Suggestions for future SA:MP updates - by Roberto80 - 26.08.2015, 17:50
Re: Suggestions for future SA:MP updates - by LazyB0y - 27.08.2015, 11:29
Re: Suggestions for future SA:MP updates - by Battlezone - 28.08.2015, 10:53
Re: Suggestions for future SA:MP updates - by Iceblizard - 28.08.2015, 10:56
Re: Suggestions for future SA:MP updates - by SoFahim - 28.08.2015, 11:30
Re: Suggestions for future SA:MP updates - by Battlezone - 28.08.2015, 11:40
Re: Suggestions for future SA:MP updates - by T-N-Z - 28.08.2015, 11:52
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 28.08.2015, 13:50
Re: Suggestions for future SA:MP updates - by zeth98 - 29.08.2015, 21:39
Re: Suggestions for future SA:MP updates - by davve95 - 29.08.2015, 22:33
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 29.08.2015, 23:08
Respuesta: Suggestions for future SA:MP updates - by Leon9741 - 01.09.2015, 16:34
Re: Respuesta: Suggestions for future SA:MP updates - by Abagail - 01.09.2015, 16:52
Re: Suggestions for future SA:MP updates - by davve95 - 15.09.2015, 16:03
Re: Suggestions for future SA:MP updates - by n0minal - 15.09.2015, 17:07
Re: Suggestions for future SA:MP updates - by davve95 - 16.09.2015, 14:46
Re: Suggestions for future SA:MP updates - by Ritzy2K - 16.09.2015, 15:26
Re: Suggestions for future SA:MP updates - by Dice_ - 27.09.2015, 10:44
Re: Suggestions for future SA:MP updates - by BGTrucker - 28.09.2015, 15:33
Re: Suggestions for future SA:MP updates - by Admigo - 28.09.2015, 16:32
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 28.09.2015, 16:38
Re: Suggestions for future SA:MP updates - by Ritzy2K - 29.09.2015, 16:41
Re: Suggestions for future SA:MP updates - by Andre02 - 29.09.2015, 17:07
Re: Suggestions for future SA:MP updates - by Manyula - 29.09.2015, 17:11
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 29.09.2015, 17:15
Re: Suggestions for future SA:MP updates - by n0minal - 29.09.2015, 17:24
Re: Suggestions for future SA:MP updates - by Sanady - 02.10.2015, 23:15
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 02.10.2015, 23:39
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 03.10.2015, 01:34
Re: Suggestions for future SA:MP updates - by Crayder - 03.10.2015, 02:26
Re: Suggestions for future SA:MP updates - by J0sh... - 03.10.2015, 14:34
Re: Suggestions for future SA:MP updates - by n0minal - 03.10.2015, 15:00
Re: Suggestions for future SA:MP updates - by J0sh... - 03.10.2015, 15:43
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 04.10.2015, 05:16
Re: Suggestions for future SA:MP updates - by Ashgard - 06.10.2015, 07:30
Re: Suggestions for future SA:MP updates - by Gammix - 06.10.2015, 11:44
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 06.10.2015, 12:01
Re: Suggestions for future SA:MP updates - by Abagail - 06.10.2015, 22:16
Re: Suggestions for future SA:MP updates - by Brendon_Pawn - 07.10.2015, 06:57
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 07.10.2015, 07:22
Re: Suggestions for future SA:MP updates - by Onfroi - 10.10.2015, 19:39
Re: Suggestions for future SA:MP updates - by AbyssMorgan - 10.10.2015, 19:58
Re: Suggestions for future SA:MP updates - by n0minal - 10.10.2015, 21:02
Re: Suggestions for future SA:MP updates - by xMaKi - 15.10.2015, 23:02
Re: Suggestions for future SA:MP updates - by Abagail - 16.10.2015, 01:34
Re: Suggestions for future SA:MP updates - by xMaKi - 16.10.2015, 15:14
Re: Suggestions for future SA:MP updates - by Sawalha - 16.10.2015, 15:47
Re: Suggestions for future SA:MP updates - by Abagail - 16.10.2015, 18:29
Re : Suggestions for future SA:MP updates - by BatTom - 16.10.2015, 19:45
Re: Suggestions for future SA:MP updates - by xMaKi - 16.10.2015, 20:28
Re: Suggestions for future SA:MP updates - by Crayder - 16.10.2015, 21:21
Re: Suggestions for future SA:MP updates - by Bruno_Cyra - 17.10.2015, 00:43
Re : Suggestions for future SA:MP updates - by BatTom - 17.10.2015, 10:15
Re: Suggestions for future SA:MP updates - by Abagail - 17.10.2015, 15:24
Re: Suggestions for future SA:MP updates - by vannesenn - 17.10.2015, 15:38
Re: Suggestions for future SA:MP updates - by davve95 - 17.10.2015, 16:48
Re: Suggestions for future SA:MP updates - by Crayder - 17.10.2015, 21:59
Re: Suggestions for future SA:MP updates - by n0minal - 17.10.2015, 23:09
Re: Suggestions for future SA:MP updates - by xMaKi - 18.10.2015, 11:38
Re: Suggestions for future SA:MP updates - by darles92 - 23.10.2015, 03:08
Re: Suggestions for future SA:MP updates - by flabed18 - 23.10.2015, 18:21
Re: Suggestions for future SA:MP updates - by davve95 - 23.10.2015, 20:55
Re: Suggestions for future SA:MP updates - by Onfroi - 23.10.2015, 21:25
Re: Suggestions for future SA:MP updates - by Infamous - 03.11.2015, 13:34
Re: Suggestions for future SA:MP updates - by Omer. - 03.11.2015, 20:57
Re: Suggestions for future SA:MP updates - by BGTrucker - 04.11.2015, 04:03
Re: Suggestions for future SA:MP updates - by Ritzy2K - 04.11.2015, 04:11
Re: Suggestions for future SA:MP updates - by Romz - 04.11.2015, 04:19
Re: Suggestions for future SA:MP updates - by Omer. - 04.11.2015, 06:32
Re: Suggestions for future SA:MP updates - by davve95 - 04.11.2015, 12:08
Re: Suggestions for future SA:MP updates - by OstGot - 04.11.2015, 14:16
Re: Suggestions for future SA:MP updates - by Ritzy2K - 07.11.2015, 18:12
Re: Suggestions for future SA:MP updates - by darles92 - 08.11.2015, 20:43
Re: Suggestions for future SA:MP updates - by Infamous - 12.11.2015, 22:23
OnVehicleDeath Suggestion - by povargek - 13.11.2015, 11:37
Re: Suggestions for future SA:MP updates - by lucamsx - 14.11.2015, 23:12
Re: Suggestions for future SA:MP updates - by MyDoggie - 15.11.2015, 04:20
Re: Suggestions for future SA:MP updates - by Wizzy951 - 15.11.2015, 04:23
Re: Suggestions for future SA:MP updates - by TwinkiDaBoss - 16.11.2015, 23:32
Re: Suggestions for future SA:MP updates - by Alex Magaсa - 16.11.2015, 23:43
Re: Suggestions for future SA:MP updates - by BGTrucker - 17.11.2015, 15:23
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 18.11.2015, 05:07
Re: Suggestions for future SA:MP updates - by davve95 - 19.11.2015, 10:37
Re: Suggestions for future SA:MP updates - by DeadDon - 19.11.2015, 12:10
Re: Suggestions for future SA:MP updates - by Karan007 - 19.11.2015, 12:39
Re: Suggestions for future SA:MP updates - by ExTaZZ69 - 22.11.2015, 07:13
Re: Suggestions for future SA:MP updates - by iKarim - 22.11.2015, 07:35
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 09.02.2016, 22:44
Re: Suggestions for future SA:MP updates - by Orma - 10.02.2016, 02:08
Re: Suggestions for future SA:MP updates - by Krest - 10.02.2016, 04:17
Re: Suggestions for future SA:MP updates - by GangstaSunny - 10.02.2016, 04:59
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 10.02.2016, 08:18
Re: Suggestions for future SA:MP updates - by SyS - 10.02.2016, 13:07
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 10.02.2016, 16:23
Re: Suggestions for future SA:MP updates - by rootcause - 12.02.2016, 00:28
Re: Suggestions for future SA:MP updates - by Floriian - 12.02.2016, 05:40
Re: Suggestions for future SA:MP updates - by graef - 12.02.2016, 10:01
Re: Suggestions for future SA:MP updates - by PT - 24.04.2016, 19:34
Re: Suggestions for future SA:MP updates - by Crayder - 24.04.2016, 20:30
Respuesta: Suggestions for future SA:MP updates - by TheKeviXz - 24.04.2016, 23:27
Re: Suggestions for future SA:MP updates - by V1T0 - 25.04.2016, 17:32
Re: Suggestions for future SA:MP updates - by davve95 - 26.04.2016, 17:40
Multi-inputtext in the next SA:MP release. - by Urukhay - 27.04.2016, 14:04
Re: Suggestions for future SA:MP updates - by Lirbo - 27.04.2016, 22:08
Re: Suggestions for future SA:MP updates - by Crayder - 28.04.2016, 00:48
Re: Suggestions for future SA:MP updates - by izeatfishz - 28.04.2016, 15:17
Re: Suggestions for future SA:MP updates - by Gigi-The-Beast - 29.04.2016, 19:00
Re: Suggestions for future SA:MP updates - by JustMe.77 - 29.04.2016, 23:22
Re: Suggestions for future SA:MP updates - by V1T0 - 30.04.2016, 20:27
Re: Suggestions for future SA:MP updates - by Johnclark - 02.05.2016, 20:24
Re: Suggestions for future SA:MP updates - by Abagail - 08.05.2016, 01:38
Re: Suggestions for future SA:MP updates - by vannesenn - 08.05.2016, 09:52
Re: Suggestions for future SA:MP updates - by Battlezone - 08.05.2016, 10:29
Re: Suggestions for future SA:MP updates - by KevinReinke - 15.05.2016, 21:11
Re: Suggestions for future SA:MP updates - by J0sh... - 15.05.2016, 21:26
Re: Suggestions for future SA:MP updates - by Sew_Sumi - 15.05.2016, 21:36
Re: Suggestions for future SA:MP updates - by Sanya4 - 16.05.2016, 14:27
Re: Suggestions for future SA:MP updates - by Manyula - 20.05.2016, 11:30
Re: Suggestions for future SA:MP updates - by Crayder - 20.05.2016, 15:24
Re: Suggestions for future SA:MP updates - by Battlezone - 20.05.2016, 16:10
Re: Suggestions for future SA:MP updates - by Kimble - 20.05.2016, 16:19
Re: Suggestions for future SA:MP updates - by vannesenn - 20.05.2016, 17:47
Re: Suggestions for future SA:MP updates - by Romz - 23.05.2016, 00:46
Re: Suggestions for future SA:MP updates - by QuaTTrO - 25.05.2016, 14:24
Re: Suggestions for future SA:MP updates - by corne - 05.07.2016, 21:19
Re: Suggestions for future SA:MP updates - by AbyssMorgan - 06.07.2016, 06:31
Re: Suggestions for future SA:MP updates - by Krest - 06.07.2016, 07:26
Re: Suggestions for future SA:MP updates - by Luicy. - 06.07.2016, 11:48
Re: Suggestions for future SA:MP updates - by Manyula - 10.07.2016, 22:17
Re: Suggestions for future SA:MP updates - by Freaksken - 11.07.2016, 17:58
Re: Suggestions for future SA:MP updates - by Luicy. - 11.07.2016, 18:12
Re: Suggestions for future SA:MP updates - by Manyula - 12.07.2016, 08:28
Re: Suggestions for future SA:MP updates - by MpK - 23.07.2016, 23:47
Re: Suggestions for future SA:MP updates - by JizzyCZ - 24.07.2016, 10:19
Re: Suggestions for future SA:MP updates - by Kar - 03.08.2016, 18:03
Re: Suggestions for future SA:MP updates - by Shinja - 05.08.2016, 23:56
Re: Suggestions for future SA:MP updates - by Crayder - 06.08.2016, 00:29
Re: Suggestions for future SA:MP updates - by Shinja - 06.08.2016, 01:51
Re: Suggestions for future SA:MP updates - by SickAttack - 06.08.2016, 02:06
Re: Suggestions for future SA:MP updates - by Crayder - 06.08.2016, 02:23
Re: Suggestions for future SA:MP updates - by Ankon - 06.08.2016, 07:48
Re: Suggestions for future SA:MP updates - by SickAttack - 06.08.2016, 14:28
Re: Suggestions for future SA:MP updates - by IstuntmanI - 30.08.2016, 16:13
Re: Suggestions for future SA:MP updates - by Spenker - 01.09.2016, 15:32
Re: Suggestions for future SA:MP updates - by thekillergreece - 05.09.2016, 12:50
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 05.09.2016, 14:16
Re: Suggestions for future SA:MP updates - by SickAttack - 06.09.2016, 03:10
Re: Suggestions for future SA:MP updates - by Kimble - 06.09.2016, 19:44
Re: Suggestions for future SA:MP updates - by Luis- - 06.09.2016, 20:04
Re: Suggestions for future SA:MP updates - by Mister0 - 06.09.2016, 20:24
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 06.09.2016, 21:30
Re: Suggestions for future SA:MP updates - by Chump - 07.09.2016, 12:24
Re: Suggestions for future SA:MP updates - by Crayder - 07.09.2016, 12:28
Re: Suggestions for future SA:MP updates - by Kimble - 07.09.2016, 14:22
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 07.09.2016, 15:45
Re: Suggestions for future SA:MP updates - by Crayder - 07.09.2016, 16:29
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 07.09.2016, 17:55
Re: Suggestions for future SA:MP updates - by IstuntmanI - 07.09.2016, 18:32
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 07.09.2016, 23:26
Re: Suggestions for future SA:MP updates - by Crayder - 08.09.2016, 00:01
Re: Suggestions for future SA:MP updates - by n0minal - 12.09.2016, 22:30
Re: Suggestions for future SA:MP updates - by Cexaxl - 25.09.2016, 18:08
Re: Suggestions for future SA:MP updates - by SickAttack - 26.09.2016, 08:32
Re: Suggestions for future SA:MP updates - by Kyle - 26.09.2016, 08:35
Re: Suggestions for future SA:MP updates - by Quinncell - 30.09.2016, 18:36
Re: Suggestions for future SA:MP updates - by Crayder - 30.09.2016, 19:07
Re: Suggestions for future SA:MP updates - by SickAttack - 30.09.2016, 19:44
Re: Suggestions for future SA:MP updates - by Danx - 30.09.2016, 19:50
Re: Suggestions for future SA:MP updates - by CannonBolt - 30.09.2016, 20:03
Re: Suggestions for future SA:MP updates - by Crystallize - 30.09.2016, 20:18
Re: Suggestions for future SA:MP updates - by SickAttack - 30.09.2016, 20:39
Re: Suggestions for future SA:MP updates - by CannonBolt - 30.09.2016, 21:07
Re: Suggestions for future SA:MP updates - by Danx - 30.09.2016, 21:37
Re: Suggestions for future SA:MP updates - by SickAttack - 30.09.2016, 21:51
Re: Suggestions for future SA:MP updates - by n0minal - 01.10.2016, 13:20
Re: Suggestions for future SA:MP updates - by long76 - 03.10.2016, 07:30
Re: Suggestions for future SA:MP updates - by SickAttack - 03.10.2016, 07:44
Re: Suggestions for future SA:MP updates - by n0minal - 03.10.2016, 18:48
Re: Suggestions for future SA:MP updates - by Spmn - 03.10.2016, 20:23
Re: Suggestions for future SA:MP updates - by SickAttack - 03.10.2016, 22:19
Re: Suggestions for future SA:MP updates - by Crystallize - 03.10.2016, 22:20
Re: Suggestions for future SA:MP updates - by Onfroi - 03.10.2016, 22:42
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 03.10.2016, 23:50
Re: Suggestions for future SA:MP updates - by SickAttack - 04.10.2016, 01:46
Re: Suggestions for future SA:MP updates - by Spmn - 04.10.2016, 12:25
Re: Suggestions for future SA:MP updates - by Crayder - 04.10.2016, 12:35
Re: Suggestions for future SA:MP updates - by Gireada - 06.10.2016, 17:36
Re: Suggestions for future SA:MP updates - by NeXoR - 16.10.2016, 14:43
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 16.10.2016, 15:12
Re: Suggestions for future SA:MP updates - by Dairyll - 16.10.2016, 15:51
Re: Suggestions for future SA:MP updates - by Crayder - 16.10.2016, 21:56
Re: Suggestions for future SA:MP updates - by Eoussama - 16.10.2016, 22:04
Re: Suggestions for future SA:MP updates - by Roozevelt - 17.10.2016, 11:54
Re: Suggestions for future SA:MP updates - by Hansrutger - 18.10.2016, 15:01
Re: Suggestions for future SA:MP updates - by Crayder - 18.10.2016, 15:59
Re: Suggestions for future SA:MP updates - by Spmn - 18.10.2016, 17:34
Re: Suggestions for future SA:MP updates - by Hansrutger - 20.10.2016, 23:04
Re: Suggestions for future SA:MP updates - by Manyula - 09.12.2016, 11:15
Re: Suggestions for future SA:MP updates - by Kar - 12.12.2016, 00:33
Re: Suggestions for future SA:MP updates - by Lawndale - 12.12.2016, 01:07
Re: Suggestions for future SA:MP updates - by n0minal - 12.12.2016, 01:07
Re: Suggestions for future SA:MP updates - by SickAttack - 12.12.2016, 03:45
Re: Suggestions for future SA:MP updates - by AbyssMorgan - 12.12.2016, 06:29
Re: Suggestions for future SA:MP updates - by KessMan - 12.12.2016, 08:31
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 12.12.2016, 08:35
Re: Suggestions for future SA:MP updates - by Manyula - 14.12.2016, 10:48
Re: Suggestions for future SA:MP updates - by SickAttack - 14.12.2016, 13:37
Re: Suggestions for future SA:MP updates - by Manyula - 14.12.2016, 15:07
Re: Suggestions for future SA:MP updates - by SickAttack - 14.12.2016, 15:51
Re: Suggestions for future SA:MP updates - by Manyula - 14.12.2016, 16:52
Re: Suggestions for future SA:MP updates - by SickAttack - 14.12.2016, 19:22
Re: Suggestions for future SA:MP updates - by RaZVaN ^ xD - 14.12.2016, 21:41
Re: Suggestions for future SA:MP updates - by MpK - 14.12.2016, 23:43
Re: Suggestions for future SA:MP updates - by vassilis - 14.12.2016, 23:49
Re: Suggestions for future SA:MP updates - by Manyula - 15.12.2016, 13:23
Re: Suggestions for future SA:MP updates - by SickAttack - 15.12.2016, 13:27
Re: Suggestions for future SA:MP updates - by n0minal - 15.12.2016, 21:30
Re: Suggestions for future SA:MP updates - by mmrk - 15.01.2017, 14:43
Re: Suggestions for future SA:MP updates - by Manyula - 16.01.2017, 22:29
Re: Suggestions for future SA:MP updates - by SKix16 - 21.01.2017, 06:58
Re: Suggestions for future SA:MP updates - by MpK - 28.01.2017, 20:28
Re: Suggestions for future SA:MP updates - by R4 - 31.01.2017, 16:42
Re: Suggestions for future SA:MP updates - by R4 - 31.01.2017, 16:44
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 31.01.2017, 17:12
Re: Suggestions for future SA:MP updates - by MpK - 31.01.2017, 19:21
Re: Suggestions for future SA:MP updates - by MiGu3X - 02.02.2017, 13:09
Re: Suggestions for future SA:MP updates - by Manyula - 02.02.2017, 14:30
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 02.02.2017, 16:30
Re: Suggestions for future SA:MP updates - by Harexe - 02.02.2017, 22:49
Re: Suggestions for future SA:MP updates - by IceCube! - 10.02.2017, 11:02
Re: Suggestions for future SA:MP updates - by Saddin - 04.03.2017, 13:41
Re: Suggestions for future SA:MP updates - by MpK - 07.03.2017, 02:27
Re: Suggestions for future SA:MP updates - by Flashhiee - 07.03.2017, 05:51
Re: Suggestions for future SA:MP updates - by stabker - 28.03.2017, 15:28
Re: Suggestions for future SA:MP updates - by CheezIt - 29.05.2017, 21:57
Re: Suggestions for future SA:MP updates - by Zorono - 29.05.2017, 23:08
Re: Suggestions for future SA:MP updates - by Spmn - 30.05.2017, 00:21
Re: Suggestions for future SA:MP updates - by Zorono - 30.05.2017, 10:07
Re: Suggestions for future SA:MP updates - by coool - 30.05.2017, 10:23
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 30.05.2017, 17:02
Re: Suggestions for future SA:MP updates - by wallee - 31.05.2017, 00:45
Re: Suggestions for future SA:MP updates - by iLearner - 31.05.2017, 05:16
Re: Suggestions for future SA:MP updates - by coool - 31.05.2017, 10:01
Re: Suggestions for future SA:MP updates - by vassilis - 04.06.2017, 09:13
Re: Suggestions for future SA:MP updates - by Crystallize - 22.07.2017, 12:43
Re: Suggestions for future SA:MP updates - by XMan98 - 23.07.2017, 10:12
Re: Suggestions for future SA:MP updates - by DocGoneWild - 28.07.2017, 07:50
Re: Suggestions for future SA:MP updates - by AbyssMorgan - 11.09.2017, 16:32
Re: Suggestions for future SA:MP updates - by XMan98 - 15.09.2017, 10:27
Re: Suggestions for future SA:MP updates - by wallee - 16.09.2017, 12:58
Re: Suggestions for future SA:MP updates - by Splodyf23 - 17.09.2017, 13:27
Re: Suggestions for future SA:MP updates - by Cena44 - 18.09.2017, 22:31
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 18.09.2017, 22:50
Re: Suggestions for future SA:MP updates - by Arthur Kane - 18.09.2017, 22:58
Re: Suggestions for future SA:MP updates - by Cena44 - 18.09.2017, 23:12
Re: Suggestions for future SA:MP updates - by wallee - 19.09.2017, 22:36
Re: Suggestions for future SA:MP updates - by DTV - 22.09.2017, 03:34
Re: Suggestions for future SA:MP updates - by KingDimzy - 23.11.2017, 21:35
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 23.11.2017, 22:21
Re: Suggestions for future SA:MP updates - by Masaki25 - 24.11.2017, 02:37
Re: Suggestions for future SA:MP updates - by Masaki25 - 24.11.2017, 02:39
Re: Suggestions for future SA:MP updates - by Cothect - 24.11.2017, 16:27
Re: Suggestions for future SA:MP updates - by HeLiOn_PrImE - 24.11.2017, 17:33
Re: Suggestions for future SA:MP updates - by SergeantRick - 02.12.2017, 13:15
Re: Suggestions for future SA:MP updates - by sowad - 02.12.2017, 15:06
Re: Suggestions for future SA:MP updates - by m4karow - 05.12.2017, 14:16
Re: Suggestions for future SA:MP updates - by BGTrucker - 07.12.2017, 06:22
Re: tab auto complete [suggestion] - by Sting. - 21.01.2018, 13:54
Re: Suggestions for future SA:MP updates - by MpK - 19.03.2018, 03:36
Re: Suggestions for future SA:MP updates - by davve95 - 19.03.2018, 18:33
Re: Suggestions for future SA:MP updates - by GRiMMREAPER - 22.03.2018, 15:38
Re: Suggestions for future SA:MP updates - by XMan98 - 31.03.2018, 10:01
Re: Suggestions for future SA:MP updates - by Konverse - 01.04.2018, 01:36
Re: Suggestions for future SA:MP updates - by MpK - 15.05.2018, 04:46
Re: Suggestions for future SA:MP updates - by ajcubb - 15.05.2018, 05:29
Re: Suggestions for future SA:MP updates - by Kah - 07.09.2018, 06:25
Re: Suggestions for future SA:MP updates - by Psyco - 09.09.2018, 12:49
Re: Suggestions for future SA:MP updates - by willttoonn - 13.03.2019, 05:49

Forum Jump:


Users browsing this thread: 2 Guest(s)