SA-MP Gamemodes with PHP
#1

I wanted to share a nice plugin with you, that a friend of mine and I created.
With this plugin you can write SA-MP gamemodes using only PHP.

There was already a plugin that did this, but it appears to be down and the guy does not seem to be active anymore.

At the moment nearly all official 0.3x functions are supported in PHP.
Some functions, that returned values via reference have been changed, so that you do not have to work with references. You simply have to leave the references out and the function will return an associative array containing the values.
Example: GetPlayerPos($playerid) returns [x => 0.0, y => 0.0, z => 0.0].

Using PHP allows you to write much cleaner code than you could do with Pawn and due to PHPs dynamic nature it should be much more comfortable. (No need to convert between data types, dynamic growing arrays, associative arrays, just to give a few examples)

Also PHP comes up with a lot of native functions for that you would normally need many extra plugins (MySQL, RegEx, FTP, time functions, file functions and so on. :)) what sometimes even don’t work that well.
Also this bundle contains some functions, that you don’t even have when using Pawn, like PDO with prepared statements or you could even use a third party ORM like Doctrine, so you can have very easy and secure database access (For many database types, not only MySQL).


But this is not everything, now a gamemode would look like a pawn gamemode with PHP syntax and some php functions.
PHP has a very cool feature: OOP.
Unfortunately the SA-MP functions are all made for procedural programming.
But we have developed something that eliminates this flaw when creating gamemodes with PHP.
We have created a whole framework in PHP that helps you create very cool and extensible gamemodes.

Let me give you an example:
In pawn you would write:
PHP Code:
public OnPlayerConnect(playerid)
{
    
//Get the name of the player that connected and display a join message to other players
    
new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
    
GetPlayerName(playeridnamesizeof(name));
    
format(stringsizeof(string), "%s has joined the server."name);
    
SendClientMessageToAll(0xC4C4C4FFstring);
    return 
1;

This is very much code for such a simple task. So in plain PHP this would look like:
PHP Code:
function OnPlayerConnect($playerid)
{
    
//Get the name of the player that connected and display a join message to other players
    
$playername GetPlayerName($playerid);
    
SendClientMessageToAll(0xC4C4C4FF"$playername has joined the server.");
    return 
true;

And now using PHP in connection with our framework it looks like:
PHP Code:
Event::on('PlayerConnect', function($player)
{
    
SendClientMessageToAll(0xC4C4C4FF$player->getName()." has joined the server.");
}); 
This is not only much shorter, but also much more fluent. Also you can have as many Event::on(‘PlayerConnect’) as you want in your code and not only one like with pawn or plain php.
This give you the ability to perfectly separate your logics when your code grows.

But lets talk about another feature of the framework:
Dialogs in SA-MP can get somewhat complicated, because you have to deal with ids, put everything in one OnDialogResponse, have to maintain ids and the according values and so on.
We have created a new way of showing a dialog:
PHP Code:
Dialog::createList("Spawn Vehicle""Okay""Oh no")
    ->
addRow("Stallion"439)
    ->
addRow("Pizzaboy"448)
    ->
addRow("Turismo"451)
    ->
addRow("Flatbed"455)
    ->
addRow("Yankee"456)
    ->
on("Success", function($player$dialog$id) {
        
$pos $player->getPos();
        
$facing $player->getFacingAngle();
        
$vehicle Vehicle::create($id$pos->x$pos->y$pos->z$facing);
        
$player->putInVehicle($vehicle);
    })->
showPlayer($player); 
I think you can see the advantages. You have the rowtext and the according value on one line, so you do not have to deal with row numbers and breaking your code when you have to insert a new line in the beginning.
Also you dont have to deal with DIALOG_IDs and sorting out the right one in the OnDialogResponse callback. Also you have the response action directly with the dialog code and not 3000 lines below in the OnDialogResponse callback.
So dealing with dialogs gets much easier and less error-prone.
Thanks to the fact that you dont have to deal with dialog ids you can also have an unlimited amount of dialogs and can also create dialogs on demand for example in a callback.

Also adding commands is much easier with the framework than in pawn.
You simply have to add the following somewhere in the gamemode file:

PHP Code:
CommandText::register(['/vehicle''/v''/veh'], function($player$params) {
    
$pos $player->getPos();
    
$facing $player->getFacingAngle();
    
$vehicle Vehicle::create($params$pos->x$pos->y$pos->z$facing);
    
$player->putInVehicle($vehicle);
}); 
This function automatically listens for /vehicle, /v and /veh and calls the callback when the user enters this command. Then it gets the players position and rotations and spawns a vehicle right in the player.

Also in Pawn you often have to create many arrays to store information about the player.
Using our framework this gets much easier:
Lets say you are in the command callback above and have the player instance in $player:
Now you want to temporarily store an information about this player. In Pawn you would create an array:
PHP Code:
new gIsCheater[MAX_PLAYERS]; 
and then do
PHP Code:
gIsCheater[playerid] = true
and on player disconnect you have to reset this value.

With our framework you dont have to define anything.
Simply take the player instance $player and call:
PHP Code:
$player->isCheater true
Thats it. As soon as the player disconnects, the framework will automatically delete all the information stored in this instance, so you dont have to deal with cleaning up.
Especially when you have more and more arrays this gets very comfortable and way easier to maintain. Also it gets less error-prone because you cant forget cleaning up. When you have very many arrays it might also get less memory consuming than pawn, because it doesnt take up space, as long as you dont save anything inside the instance, where in pawn it always takes the full memory even if no player is connected.

Another cool feature concering event management is:
Lets say you have an event especially for one player, than you could watch Event::on(‘PlayerUpdate’) and sort out all the wrong players or you use the following way:
PHP Code:
$player->on(‘Update’, function($player) {
    echo 
“Only called for .$player->getName();
}); 
There are many other cool functions, just check them out.
Unfortunately there is no documentation for the framework right now, but itґs pretty easy to learn when you simply look which functions exist on the classes. (Look inside the server-files/php/core folder)

If you want to see it in action, take a look at this file: https://github.com/Lapayo/SAMPHP/blo...c/gamemode.php
This script provides the same functionality as the grandlarc gamemode from the samp examples, but is much shorter and in my opinion much cleaner and also easier to understand and to change.

Installation
Linux
1. Download the bundle (See link below)
2. Extract it into a directory.
3. Move the files/folders from the server-folder directory to your server folder
4. Add “plugins samphp” to your server.cfg
5. If you get an “missing libphp5.so” error see "Installing libphp5.so"
(6. You should set gamemode0 to "empty")
Installing libphp5.so
There are two ways for installing libphp5.so:
First way:
1. Download the binary for your OS from a link below.
2. Copy the contained libphp5.so to /usr/local/lib
3. Run ldconfig
(On CentOS 5.9: "/sbin/ldconfig /usr/local/lib"
4. Done. :-)
Second way:
1. Install libxml2-dev and other build tools like gcc and headers
2. Run "install_libphp.sh" as root (Downloads, compiles and installs libphp5.so)
3. Done.
Windows
1. Download the bundle (See link below)
2. Extract it into a directory.
3. Move the files/folders from the server-folder directory to your server folder
4. Add “plugins samphp” to your server.cfg
5. If you get a message that "msvcr110.dll" is missing, you have to install http://www.microsoft.com/de-de/downl....aspx?id=30679
(6. You should set gamemode0 to "empty")

Start coding
First way: Simply create a gamemode.php inside the php folder, include “core/bootstrap.php” and start coding your php gamemode. :-)
Second way:
1. Create a folder "mygamemode" inside the php folder and create a gamemode.php inside this folder, include “core/bootstrap.php” and start coding your php gamemode. :-)
2. Add "samphpmode mygamemode" to your server.cfg

Links:
GitHub
ChangeLog
New Binary Build by erorcun:
http://forum.sa-mp.com/showthread.ph...40#post3036240
Downloads for Debian/Ubuntu/Linux Mint x86/x86_64:
SAMPHP Binary: http://www.sney.net/files/samphp-release-linux.zip
libphp5.so: http://www.sney.net/files/libphp5.so.zip
Downloads for CentOS 5.9 x86/x86_64:
SAMPHP Binary: http://www.sney.net/files/samphp-release-centos.zip
libphp5.so: http://www.sney.net/files/libphp5.so_centos.zip
Downloads for Windows:
SAMPHP Binary: http://www.sney.net/files/samphp-release-windows.zip
Compiling SAMPHP on your own: Linux
1. Clone the GitHub repository to your harddrive.
2. Install SAMP GDK.
3. Install libphp5 using the script.
4. start build.sh in the samphp folder.
5. Copy the created samphp file to your plugins folder.


Thanks for your interest and reading this very long post.
If you have any recommendations for this project, found a bug, or still know something, that is complicated or you have a “vision” how things could work more easily, just leave a post in this thread or open a issue at GitHub. :-)


Simon :-)


Successfully tested on
- Debian 7 x86
- Debian 7 x86_64 (using precompiled Debian/Ubuntu x86 libphp5.so)
- Ubuntu 13.04 x86_64
- Linux Mint 14 x86
- CentOS 5.9 x86
- Windows 7 Enterprise 64 bit
Reply


Messages In This Thread
SA-MP Gamemodes with PHP - by lapayo - 06.06.2013, 20:24
Re: SA-MP Gamemodes with PHP - by Dr.Einstein - 06.06.2013, 20:32
Re: SA-MP Gamemodes with PHP - by CrazyChoco - 06.06.2013, 20:49
Re: SA-MP Gamemodes with PHP - by OrMisicL - 06.06.2013, 20:53
Re: SA-MP Gamemodes with PHP - by Rsmiley - 06.06.2013, 21:26
Re: SA-MP Gamemodes with PHP - by Memoryz - 06.06.2013, 21:31
AW: SA-MP Gamemodes with PHP - by lapayo - 06.06.2013, 21:49
Re: AW: SA-MP Gamemodes with PHP - by Rsmiley - 06.06.2013, 21:53
Re: SA-MP Gamemodes with PHP - by Red_Dragon. - 06.06.2013, 21:53
AW: SA-MP Gamemodes with PHP - by lapayo - 06.06.2013, 22:16
Re: AW: SA-MP Gamemodes with PHP - by Rsmiley - 06.06.2013, 22:28
Re: SA-MP Gamemodes with PHP - by [DOG]irinel1996 - 06.06.2013, 22:37
Re: SA-MP Gamemodes with PHP - by Emmet_ - 06.06.2013, 22:48
Re: SA-MP Gamemodes with PHP - by Whiteagle - 06.06.2013, 23:06
AW: SA-MP Gamemodes with PHP - by lapayo - 07.06.2013, 00:05
Re: SA-MP Gamemodes with PHP - by Rsmiley - 07.06.2013, 01:53
AW: Re: SA-MP Gamemodes with PHP - by lapayo - 07.06.2013, 02:17
Re: SA-MP Gamemodes with PHP - by [CG]Milito - 07.06.2013, 02:48
Re: AW: Re: SA-MP Gamemodes with PHP - by Rsmiley - 07.06.2013, 02:57
Re: SA-MP Gamemodes with PHP - by Hanger - 07.06.2013, 09:32
Re: SA-MP Gamemodes with PHP - by Memoryz - 07.06.2013, 22:49
Re: SA-MP Gamemodes with PHP - by Rsmiley - 08.06.2013, 00:16
Re: SA-MP Gamemodes with PHP - by Kalladel - 08.06.2013, 00:49
AW: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 01:27
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 08.06.2013, 02:37
Re: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 10:51
Re: SA-MP Gamemodes with PHP - by Whiteagle - 08.06.2013, 12:43
Re: AW: SA-MP Gamemodes with PHP - by steki. - 08.06.2013, 12:55
Re: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 14:28
AW: SA-MP Gamemodes with PHP - by Ditti - 08.06.2013, 18:16
Re: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 18:45
AW: SA-MP Gamemodes with PHP - by Ditti - 08.06.2013, 18:59
Re: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 19:11
Re: SA-MP Gamemodes with PHP - by ToFFiK - 08.06.2013, 19:26
Re: SA-MP Gamemodes with PHP - by Dan.. - 08.06.2013, 19:59
Re: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 20:40
Re: SA-MP Gamemodes with PHP - by lapayo - 08.06.2013, 21:26
Re: SA-MP Gamemodes with PHP - by Dan.. - 09.06.2013, 06:47
Re: SA-MP Gamemodes with PHP - by GWMPT - 09.06.2013, 14:30
Re: SA-MP Gamemodes with PHP - by lapayo - 09.06.2013, 14:40
Re: SA-MP Gamemodes with PHP - by GWMPT - 09.06.2013, 14:42
Re: SA-MP Gamemodes with PHP - by steki. - 09.06.2013, 22:41
Re: SA-MP Gamemodes with PHP - by carloLT - 09.06.2013, 22:53
Re: SA-MP Gamemodes with PHP - by carloLT - 10.06.2013, 03:22
Re: SA-MP Gamemodes with PHP - by InfiniTy. - 10.06.2013, 06:57
Re: SA-MP Gamemodes with PHP - by Lorenc_ - 10.06.2013, 08:21
Re: SA-MP Gamemodes with PHP - by Whiteagle - 10.06.2013, 08:38
Re: SA-MP Gamemodes with PHP - by steki. - 10.06.2013, 10:26
AW: SA-MP Gamemodes with PHP - by Phцnix - 11.12.2013, 14:40
Re: AW: SA-MP Gamemodes with PHP - by GWMPT - 11.12.2013, 15:00
Re: SA-MP Gamemodes with PHP - by Denisucoz - 10.01.2014, 10:12
Re: SA-MP Gamemodes with PHP - by [TC]XxJuggaloxX - 16.01.2014, 02:30
Re: SA-MP Gamemodes with PHP - by Excelize - 16.01.2014, 04:57
Re: SA-MP Gamemodes with PHP - by QuaTTrO - 16.01.2014, 13:51
Re: SA-MP Gamemodes with PHP - by Nazaret - 24.01.2014, 14:09
Re: SA-MP Gamemodes with PHP - by [WA]iRonan - 24.01.2014, 14:15
Re: SA-MP Gamemodes with PHP - by Walnut - 24.01.2014, 15:02
Re: SA-MP Gamemodes with PHP - by [WA]iRonan - 24.01.2014, 15:06
Re: SA-MP Gamemodes with PHP - by Rsmiley - 31.01.2014, 22:24
Re: SA-MP Gamemodes with PHP - by SeV_ - 31.01.2014, 22:28
Re: SA-MP Gamemodes with PHP - by GWMPT - 01.02.2014, 16:44
Re: SA-MP Gamemodes with PHP - by Mauzen - 01.02.2014, 17:24
Re: SA-MP Gamemodes with PHP - by QuaTTrO - 01.02.2014, 20:04
Re: SA-MP Gamemodes with PHP - by GWMPT - 01.02.2014, 20:42
Re: SA-MP Gamemodes with PHP - by Rsmiley - 16.02.2014, 05:53
Re: SA-MP Gamemodes with PHP - by kN1GhT - 16.02.2014, 14:10
Re: SA-MP Gamemodes with PHP - by cniry - 16.02.2014, 18:05
Re: SA-MP Gamemodes with PHP - by cniry - 22.02.2014, 20:19
Re : SA-MP Gamemodes with PHP - by FosterK - 23.02.2014, 10:27
Re: SA-MP Gamemodes with PHP - by [ESC]Walter_Wolf - 11.03.2014, 16:00
Re: SA-MP Gamemodes with PHP - by GWMPT - 15.03.2014, 14:34
Re: SA-MP Gamemodes with PHP - by [ESC]Walter_Wolf - 15.03.2014, 19:54
Re: SA-MP Gamemodes with PHP - by IceShock - 15.03.2014, 19:58
Re: SA-MP Gamemodes with PHP - by GWMPT - 15.03.2014, 20:33
Re: SA-MP Gamemodes with PHP - by No Fear - 17.03.2014, 12:36
Re: SA-MP Gamemodes with PHP - by therainycat - 10.05.2014, 21:20
Re: SA-MP Gamemodes with PHP - by erorcun - 11.05.2014, 11:19
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 11.05.2014, 11:23
Re: SA-MP Gamemodes with PHP - by erorcun - 11.05.2014, 23:23
Re: SA-MP Gamemodes with PHP - by GWMPT - 12.05.2014, 18:08
Re: SA-MP Gamemodes with PHP - by erorcun - 12.05.2014, 19:37
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 12.05.2014, 20:36
Re: SA-MP Gamemodes with PHP - by erorcun - 13.05.2014, 00:02
Re: SA-MP Gamemodes with PHP - by therainycat - 13.05.2014, 09:45
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 13.05.2014, 16:17
Re: SA-MP Gamemodes with PHP - by erorcun - 13.05.2014, 19:23
Re: SA-MP Gamemodes with PHP - by GWMPT - 13.05.2014, 19:48
Re: SA-MP Gamemodes with PHP - by erorcun - 13.05.2014, 19:54
Re: SA-MP Gamemodes with PHP - by GWMPT - 13.05.2014, 19:57
Re: SA-MP Gamemodes with PHP - by erorcun - 14.05.2014, 12:12
Re: SA-MP Gamemodes with PHP - by erorcun - 15.05.2014, 00:10
Re: SA-MP Gamemodes with PHP - by Nazaret - 15.05.2014, 15:27
SAMPHP Released - by erorcun - 15.05.2014, 18:25
Re: SAMPHP Released - by therainycat - 15.05.2014, 18:30
Re: SA-MP Gamemodes with PHP - by therainycat - 15.05.2014, 21:00
Re: SA-MP Gamemodes with PHP - by erorcun - 15.05.2014, 21:56
Re: SA-MP Gamemodes with PHP - by crs0r - 16.05.2014, 22:20
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 22.05.2014, 12:17
Re: SA-MP Gamemodes with PHP - by erorcun - 15.06.2014, 18:40
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 16.06.2014, 13:45
Re: SA-MP Gamemodes with PHP - by RenovanZ - 17.06.2014, 06:12
Re: SA-MP Gamemodes with PHP - by lapayo - 28.06.2014, 13:31
Re: SA-MP Gamemodes with PHP - by erorcun - 29.06.2014, 09:49
Re: SA-MP Gamemodes with PHP - by lapayo - 29.06.2014, 13:05
Re: SA-MP Gamemodes with PHP - by Players - 07.07.2014, 02:44
Re: SA-MP Gamemodes with PHP - by ikkentim - 07.07.2014, 20:28
Re: SA-MP Gamemodes with PHP - by Players - 11.07.2014, 00:31
Re: SA-MP Gamemodes with PHP - by Players - 11.07.2014, 18:57
Re: SA-MP Gamemodes with PHP - by GWMPT - 20.07.2014, 21:44
Re: SA-MP Gamemodes with PHP - by Kaperstone - 20.07.2014, 22:59
Re: SA-MP Gamemodes with PHP - by GWMPT - 21.07.2014, 10:29
Re: SA-MP Gamemodes with PHP - by Kaperstone - 22.07.2014, 02:35
Re: SA-MP Gamemodes with PHP - by GWMPT - 22.07.2014, 10:05
Re: SA-MP Gamemodes with PHP - by harsimarriar96 - 23.07.2014, 10:29
Re: SA-MP Gamemodes with PHP - by Kaperstone - 27.07.2014, 02:14
Re : SA-MP Gamemodes with PHP - by S4t3K - 27.07.2014, 02:32
Re: SA-MP Gamemodes with PHP - by Kaperstone - 11.09.2014, 08:48
Re: SA-MP Gamemodes with PHP - by GWMPT - 18.11.2014, 11:33
Re : Re: SA-MP Gamemodes with PHP - by Enchancer - 18.11.2014, 12:14
Re: SA-MP Gamemodes with PHP - by GWMPT - 18.11.2014, 12:58
Re : SA-MP Gamemodes with PHP - by Enchancer - 18.11.2014, 13:00
Re: Re : SA-MP Gamemodes with PHP - by GWMPT - 18.11.2014, 13:18
AW: SA-MP Gamemodes with PHP - by Bubelbub - 23.11.2014, 11:58
Re: SA-MP Gamemodes with PHP - by GWMPT - 23.11.2014, 12:18
Re: SA-MP Gamemodes with PHP - by katumas - 27.08.2015, 06:31
Re: SA-MP Gamemodes with PHP - by !damo!spiderman - 27.08.2015, 07:53
Re: SA-MP Gamemodes with PHP - by GWMPT - 27.08.2015, 21:03
Re: SA-MP Gamemodes with PHP - by katumas - 24.10.2015, 01:57
Re: SA-MP Gamemodes with PHP - by thanhlongcongtu - 11.12.2015, 13:41
Re: SA-MP Gamemodes with PHP - by t1ran - 21.12.2015, 11:52
Re: SA-MP Gamemodes with PHP - by katumas - 17.02.2016, 12:37
Re: SA-MP Gamemodes with PHP - by TutNichts - 18.02.2016, 15:37
Re: SA-MP Gamemodes with PHP - by CoaPsyFactor - 19.02.2016, 01:13
Re: SA-MP Gamemodes with PHP - by GWMPT - 19.02.2016, 08:48
Re: SA-MP Gamemodes with PHP - by katumas - 22.02.2016, 19:35
Re: SA-MP Gamemodes with PHP - by GWMPT - 23.02.2016, 15:22
Re: SA-MP Gamemodes with PHP - by BonhommeG - 23.02.2016, 16:14
Re: SA-MP Gamemodes with PHP - by BlackBank - 16.11.2016, 23:42
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 17.11.2016, 08:05
Re: SA-MP Gamemodes with PHP - by GWMPT - 17.11.2016, 10:04
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 17.11.2016, 11:38
Re: SA-MP Gamemodes with PHP - by BlackBank - 17.11.2016, 12:43
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 17.11.2016, 14:46
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 17.11.2016, 23:20
Re: SA-MP Gamemodes with PHP - by GWMPT - 18.11.2016, 08:45
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 10:23
Re: SA-MP Gamemodes with PHP - by GWMPT - 18.11.2016, 15:22
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 16:52
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 18.11.2016, 17:13
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 17:22
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 18.11.2016, 17:30
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 17:43
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 18.11.2016, 18:02
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 18:08
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 18:13
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 18.11.2016, 18:18
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 18:34
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 18.11.2016, 20:30
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 21:14
Re: SA-MP Gamemodes with PHP - by BlackBank - 18.11.2016, 21:15
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 18.11.2016, 21:18
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 18.11.2016, 23:10
Re: SA-MP Gamemodes with PHP - by BlackBank - 18.11.2016, 23:56
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 19.11.2016, 00:07
Re: SA-MP Gamemodes with PHP - by BlackBank - 19.11.2016, 00:52
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 19.11.2016, 00:59
Re: SA-MP Gamemodes with PHP - by BlackBank - 19.11.2016, 01:15
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 19.11.2016, 01:19
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 19.11.2016, 10:08
Re: SA-MP Gamemodes with PHP - by BlackBank - 19.11.2016, 14:33
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 19.11.2016, 15:37
Re: SA-MP Gamemodes with PHP - by BlackBank - 19.11.2016, 23:09
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 20.11.2016, 03:28
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 20.11.2016, 08:57
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 20.11.2016, 14:05
Re: SA-MP Gamemodes with PHP - by BlackBank - 20.11.2016, 18:18
Re: SA-MP Gamemodes with PHP - by TwinkiDaBoss - 20.11.2016, 20:47
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 21.11.2016, 11:29
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 22.11.2016, 21:50
Re: SA-MP Gamemodes with PHP - by thanhlongcongtu - 05.12.2016, 19:56
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 09.12.2016, 14:04
Re: SA-MP Gamemodes with PHP - by justjamie - 10.12.2016, 10:17
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 10.12.2016, 20:51
Re: SA-MP Gamemodes with PHP - by thanhlongcongtu - 13.12.2016, 23:57
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 14.12.2016, 14:02
Re: SA-MP Gamemodes with PHP - by GWMPT - 15.12.2016, 10:52
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 15.12.2016, 12:24
Re: SA-MP Gamemodes with PHP - by amirm3hdi - 25.06.2017, 12:39
Re: SA-MP Gamemodes with PHP - by DavidGravelli - 25.06.2017, 21:01
Re: SA-MP Gamemodes with PHP - by thanhlongcongtu - 04.10.2017, 22:06
Re: SA-MP Gamemodes with PHP - by Kaperstone - 04.10.2017, 23:40
Re: SA-MP Gamemodes with PHP - by thanhlongcongtu - 05.10.2017, 04:20

Forum Jump:


Users browsing this thread: 3 Guest(s)