SA-MP Forums Archive
Scripter - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Scripter (/showthread.php?tid=208711)



Scripter - Vi3t102 - 09.01.2011

I Need Someone To Script For Me
I Want Car Command
Money Command
Admin Command
And ETC.
Thanks Mapper Scripter


Re: Scripter - Kitten - 09.01.2011

1. No One scripts for free
2.
pawn Код:
if(strcmp( cmd, "/car", true ) == 0 )
    {
        new Float:X, Float:Y, Float:Z;
        new tmp[256];
        new created_vehicle_id;
        tmp = strtok( cmdtext, idx );

        GetPlayerPos( playerid, X, Y, Z );

        created_vehicle_id = CreateVehicle( strval(tmp), X+2, Y+2, Z, 0, 0, 0, -1 );

        new msg[256];
        format(msg,256,"Created vehicle: %d",created_vehicle_id);
        SendClientMessage(playerid,0xAAAAAAAA,msg);

        return 1;
    }
Not made by me

3.
pawn Код:
GivePlayerMoney(playerid, 5000 ) ;
4. Search forums for admin systems
5. -.-