Recent Posts

Pages: [1]
1
SQL scripting / Country cmd
« Last post by fast on August 29, 2014, 03:52:03 am »
Code: [Select]
else if ( cmd == "country" )
        {
                local check = Required( player, cmd, Level );
               
                if ( check )
                {
                        if ( !plr ) PrivMessage( "Error - Invalid Nick/ID.", player );
                        else Message( "" + plr + "'s Country: (" + IpToCountry( plr.IP ) + ")" ),EchoMessage( "7" + plr + "'s Country: (" + IpToCountry( plr.IP ) + ")." );
                }         
        }
2
Fast showroom / Simple news system
« Last post by fast on August 23, 2014, 06:54:34 am »
Code: [Select]
public RandomTalknews1()
{
SendClientMessageToAll( ORANGE, ">> News 1");
}
public RandomTalknews2()
{
SendClientMessageToAll( ORANGE, ">> News 2");
}
public RandomTalknews3()
{
SendClientMessageToAll( ORANGE, ">> News 3");
}
public RandomTalknews4()
{
SendClientMessageToAll( ORANGE, ">> News 4");
}
public RandomTalknews5()
{
SendClientMessageToAll( ORANGE, ">> News 5");
}
public RandomTalknews6()
{
SendClientMessageToAll( ORANGE, ">> News 6");
}


Code: [Select]
SetTimer("RandomTalknews1", 40000 , true);
SetTimer("RandomTalknews2", 80000 , true);
SetTimer("RandomTalknews3", 120000 , true);
SetTimer("RandomTalknews4", 160000 , true);
SetTimer("RandomTalknews5", 200000 , true);
SetTimer("RandomTalknews6", 240000 , true);


100% worked
3
Pawno Script Releases / SKW script v2.0
« Last post by fast on August 23, 2014, 06:51:03 am »
4
Fast showroom / Heal in 5 sec
« Last post by fast on August 21, 2014, 12:35:05 am »
Code: [Select]
}
else if ( strcmp( cmd, "!heal", true ) == 0 )
{
new Float:Health; GetPlayerHealth( playerid, Health );
  if ( Health >= 100 ) SendClientMessage( playerid, COLOR_GREEN, "** Pm >> Error: You are already healthy." );
else
{
    TogglePlayerControllable(playerid,0);
SetTimer("Healing",5000,0);
    SendClientMessage( playerid, COLOR_YELLOW, "** Pm >> wait 5 secend." );
}
return 1;
    }
return 1;
}



Fuction

    Code: [Select]
    }
    public Healing(playerid)
    {
    TogglePlayerControllable(playerid, 1);
    SetPlayerHealth( playerid, 100.0 );
    SendClientMessage( playerid, COLOR_GREEN, "** Pm >> You have been healed!" );
    }
    5
    Pawno Script Releases / Gups 2.0
    « Last post by fast on August 08, 2014, 10:03:48 am »
    Download Link : http://en.file-upload.net/download-9312980/GUps2.0.rar.html

    I give u only gamemode and scriptfiles. [Warning: Dont delete Any File Or many fuction Bugs]


    Code: [Select]
    else if ( strcmp( cmd, "!getcar", true ) == 0 )
    {
        tmp = strtok( cmdtext, idx );
    if ( !IsLoggedIn( playerid ) ) SendClientMessage( playerid, COLOR_RED, "Please log-in to your account." );
    else if ( !strlen( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "USAGE: !getcar [VehicleID]" );
    else if ( !IsVehicleExist( strval( tmp ) ) ) SendClientMessage( playerid, COLOR_GREEN, "Error: Unknown Vehicle" );
    else if ( !IsVehicleOwnedShared( strval( tmp ), gPlayers[ playerid ] ) ) SendClientMessage( playerid, COLOR_GREEN, "You do not have the keys for that vehicle." );
    else
    {
    new Float:Angle;
    GetPlayerPos( playerid, x, y, z);
    GetPlayerFacingAngle( playerid,Angle);

    if ( !Angle) SendClientMessage( playerid, COLOR_GREEN, "Error: Invalid vehicle!" );

    SetVehiclePos( strval( tmp ),x+3,y+3,z,Angle);
    format( szMsg, sizeof( szMsg ), "Getting vehicle:[ %d ]", strval( tmp ) );
    SendClientMessage( playerid, COLOR_GREEN, szMsg );
    }
    return 1;
    }
    6
    Fast showroom / Random Messages
    « Last post by fast on August 08, 2014, 09:59:12 am »
    Code: [Select]
    new RandomMessagesList[][] =
    {
    "Welcome Use !rules Before Playing",
    "Want a weapon use !wep <name/id> Now!",
    "New System by Fast",
    };

    Msg Timer
    Code: [Select]
    SetTimer("RandomMessages", 50000, true);

    Fuction On public

    Code: [Select]
    forward RandomMessages();
    public RandomMessages()//Public what sends the messages
    {
    SendClientMessageToAll(0xF6A113FF, RandomMessagesList[random(sizeof(RandomMessagesList))]);
    }
    7
    Pawno Script Releases / Sharks V/s Diez Script TDM Version 2.1
    « Last post by fast on July 24, 2014, 04:04:37 am »
    Quote
    Hello Guyz I am [NYB]fast So I am GIve You New Team Death Match Version 2.1 Enjoy This Script..

    Sharks V/s Diez Script...

    ____________________________SERVER-COMMANDS______________________________


    (/c): register, login, logout, setpassword, setstats, nogoto, setloc
    (!): hp, armour, wep, radaroff, stats, level, cash, ping, goto, heal,
    loc, admins, skin, version, cd, saveloc, gotoloc, players, fight, leave,
    car, fix, flip, eject, buycar, sellcar, sharecar, delsharecar, getcar,
    lockcar, unlockcar.



    ____________________________ADmin COMMANDS______________________________

    sethp, setarmour, setlevel, getip, setpassword, setgrav, setspeed, jumpswitch, fastswitch, stuntbike, waterdrive, carfly, settime, lights, alarm, setwlevel, taxiboost, driveby, setcarhp, delpmarker, setwep, kick, drown, spikesfor,ban, getip, say, ann/ann2, goto, bring, getcar, respawn, setscore, resetpassword, setskin, setcmdlevel/getcmdlevel
    widescreen, widescreenfor, gscanlines/gscanlinesfor, wscanlines/wscanlinesfor, disarm, pmann/pmann2, resetstats, delveh, luip, saveloc, gotoloc


    fix skin and fight cmds
    Download Link:http://www.file-upload.net/download-9322141/SharksVsDiaz.rar.html
    8
    Pawno Script Releases / Monkey Script v0.1
    « Last post by fast on July 24, 2014, 04:01:53 am »
    9
    Fast showroom / !wep z ing gre
    « Last post by fast on July 24, 2014, 03:44:16 am »
    Code: [Select]
    else if (strcmp(cmd, "!wep", true) == 0 || strcmp(cmd, "!we", true) == 0 || strcmp(cmd, "!arma", true) == 0)
    {
        new  tmp3[ 256 ], tmp4[ 256 ], tmp5[ 256 ], tmp2[256];
        tmp = strtok( cmdtext, idx ), tmp2 = strtok( cmdtext, idx ), tmp3 = strtok( cmdtext, idx ), tmp4 = strtok( cmdtext, idx ), tmp5 = strtok( cmdtext, idx );
            if ( !strlen( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "Escrive: !wep [Arma1] [Arma2] [Arma3] [Arma4] [Arma5]" );
    else
    {
                    new wep[6];
                    if( !strlen( tmp2 ) )
                    {
                    wep[1] = FindWepIDFromString( tmp );
                    SetPlayerWeapon(playerid, wep[1], 9999 );
                   
        }
                     
                    else if( !strlen( tmp3 ) )
                    {
                    wep[1] = FindWepIDFromString( tmp );
                    SetPlayerWeapon(playerid, wep[1], 9999 );
                    wep[2] = FindWepIDFromString( tmp2 );
                    SetPlayerWeapon(playerid, wep[2], 9999 );

        }
                    else if( !strlen( tmp4 ) )
                    {
                    wep[1] = FindWepIDFromString( tmp );
                    SetPlayerWeapon(playerid, wep[1], 9999 );
                    wep[2] = FindWepIDFromString( tmp2 );
                    SetPlayerWeapon(playerid, wep[2], 9999 );
                    wep[3] = FindWepIDFromString( tmp3 );
                    SetPlayerWeapon(playerid, wep[3], 9999 );

        }
                    else if( !strlen( tmp5 ) )
                    {
                    wep[1] = FindWepIDFromString( tmp );
                    SetPlayerWeapon(playerid, wep[1], 9999 );
                    wep[2] = FindWepIDFromString( tmp2 );
                    SetPlayerWeapon(playerid, wep[2], 9999 );
                    wep[3] = FindWepIDFromString( tmp3 );
                    SetPlayerWeapon(playerid, wep[3], 9999 );
                    wep[4] = FindWepIDFromString( tmp4 );
                    SetPlayerWeapon(playerid, wep[4], 9999 );

    }
                    else if( strlen( tmp5 ) )
                    {
                    wep[1] = FindWepIDFromString( tmp );
                    SetPlayerWeapon(playerid, wep[1], 9999 );
                    wep[2] = FindWepIDFromString( tmp2 );
                    SetPlayerWeapon(playerid, wep[2], 9999 );
                    wep[3] = FindWepIDFromString( tmp3 );
                    SetPlayerWeapon(playerid, wep[3], 9999 );
                    wep[4] = FindWepIDFromString( tmp4 );
                    SetPlayerWeapon(playerid, wep[4], 9999 );
                    wep[5] = FindWepIDFromString( tmp5 );
                    SetPlayerWeapon(playerid, wep[5], 9999 );

    }

    if(( wep[1] == 33) || ( wep[2] == 33) || ( wep[3] == 33) || ( wep[4] == 33) || ( wep[5] == 33 ))
    {
                            SetPlayerWeapon(playerid,0,0);
    SendClientMessage(playerid,COLOR_GREEN,"Error: Miniguns are not allowed.");
    }

    }

    return 1;
    }
    Pages: [1]