Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - [NYB]fast:p

Pages: [1]
1
Servers / VCED Server
« on: November 04, 2014, 10:17:44 am »

HostName: VIce City Extrime Survival [Host By Fast]
Address:  ?.???.???.???:????
Forum: http://vces.site90.com
Version: 1.0

IRC Channel: #vces On Lunet

----------SERVER COMMANDS------------
(/c) register, login, newpassword, randspawn, nogoto, newpassword
(!) level, infp, spawned, !flip, !fix, admins, wep, ping, goto, nogoto, hide, arm, hp, heal, skin, info, scripts, spree, myspree, rules, disarm, addquote, quote, cd, drunk, undrunk, randspawn, wstats, bstats, cash, stats, deposit, withdraw, bank, givecash,time, team, accept, deny, leaveteam, buycar, sellcar, sharecar, getcar, gotocar, mycars, mysharecars, delsharecar, eject, fix


-----------ADMINS COMMANDS------------

(/c)ann, kick, kill, drown, mute, unmute, get, freeze, unfreeze, getip, ban, unban
(/c)setmon, setlevel, setkills, setdeaths, kickall, freezeall, unfreezeall, killall
(/c)spawnallv, delspawnallv, drunkall, undrunkall, healall, getall, baninfo, slap

2
Snippet Showroom / Simple news system
« on: August 23, 2014, 02:47:50 pm »
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
ShowRoom (pawn) / SKW script v2.0
« on: August 23, 2014, 02:46:36 pm »

4
Snippet Showroom / Bank Commands Bugs:(0)
« on: August 09, 2014, 01:59:44 pm »
[pawn]else if ( strcmp( cmd, "!deposit", 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: !deposit [Amount/All]" );
      else if ( strcmp( GetPlayerLocation( playerid ), "Bank-Little-Havana-Vice-City-Mainland", true ) == 1 ) SendClientMessage( playerid, COLOR_GREEN, "Error: You have to be at the bank!" );
      else
      {
         if ( strcmp( tmp, "all", true ) == 0 )
         {
            format( szMsg, sizeof( szMsg ), "You have deposited:[ $%d ] into your bank account.",GetPlayerHandCash(gPlayers[ playerid ]) );
            SendClientMessage( playerid, COLOR_GREEN, szMsg );
            IncPlayerBankCash( playerid,GetPlayerHandCash(gPlayers[ playerid ]) );
            DecPlayerHandCash( playerid,GetPlayerHandCash(gPlayers[ playerid ]) );
         }
         else
         {
            if ( !IsNumeric( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "Error: Invalid Amount!" );
            else if (GetPlayerHandCash(gPlayers[ playerid ]) < StrToInt( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "Error: You havent got the needed money." );
            else
            {
               format( szMsg, sizeof( szMsg ), "You have deposited:[ $%d ] into your bank account.",tmp);
               SendClientMessage( playerid, COLOR_GREEN, szMsg );
               DecPlayerHandCash( playerid,StrToInt( tmp ) );
               IncPlayerBankCash( playerid,StrToInt( tmp ) );
            }
         }
      }
      return 1;
      }
      else if ( strcmp( cmd, "!withdraw", 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: !withdraw [Amount/All]" );
      else if ( strcmp( GetPlayerLocation( playerid ), "Bank-Little-Havana-Vice-City-Mainland", true ) == 1 ) SendClientMessage( playerid, COLOR_GREEN, "Error: You have to be at the bank!" );
      else
      {
         if ( strcmp( tmp, "all", true ) == 0 )
         {
            format( szMsg, sizeof( szMsg ), "You have withdrawed:[ $%d ] ftom your bank account.",GetPlayerBankCash(gPlayers[ playerid ]) );
            SendClientMessage( playerid, COLOR_GREEN, szMsg );
            IncPlayerHandCash( playerid,GetPlayerBankCash(gPlayers[ playerid ]) );
            SetPlayerBankCash( playerid,0 );
         }
         else
         {
            if ( !IsNumeric( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "Error: Invalid Amount!" );
            else if (GetPlayerBankCash(gPlayers[ playerid ]) < StrToInt( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "Error: You havent got the needed money." );
            else
            {
               format( szMsg, sizeof( szMsg ), "You have withdrawed:[ $%d ] from your bank account.",tmp);
               SendClientMessage( playerid, COLOR_GREEN, szMsg );
               DecPlayerBankCash( playerid,StrToInt( tmp ) );
               IncPlayerHandCash( playerid,StrToInt( tmp ) );
            }
         }
      }
      return 1;
   }
     else if (strcmp(cmd, "!givecash", true) == 0) {
          new tmp2[256], plr;
      tmp = strtok(cmdtext, idx), tmp2 = strtok(cmdtext, idx), plr = FindPlayerIDFromString(tmp);
      if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "You need to login first!");
      else if (!strlen(tmp2)) SendClientMessage(playerid,COLOR_GREEN, "USAGE: !givecash [Nick/ID] [Amount]");
      else if (GetPlayerHandCash(gPlayers[playerid]) < StrToInt(tmp2)) SendClientMessage(playerid,COLOR_GREEN, "Error: You havent got the needed money.");
      else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Error: Unknown player");
      else if(!IsPlayerRegistered(gPlayers[plr])) SendClientMessage(playerid, COLOR_RED, "Error: That nick is not registered!");
      else if (!IsNumeric(tmp2)) SendClientMessage(playerid,COLOR_GREEN, "Error: Invalid Amount!");
      else {
         format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to: [ %s ]",tmp2,gPlayers[plr]);
         SendClientMessage(playerid,COLOR_GREEN, szMsg);
         DecPlayerHandCash(playerid,StrToInt(tmp));
         IncPlayerHandCash(plr,StrToInt(tmp));
      }
      return 1;
      }
[/pawn]

[pawn]else if ( strcmp( cmd, "!cash", true ) == 0 )
   {
         if ( !IsPlayerRegistered(gPlayers[ playerid ]) )
      {
         format( szMsg, sizeof( szMsg ), "Error: %s is not a registered nick.", gPlayers[ playerid ] );
         SendClientMessage( playerid, COLOR_GREEN, szMsg );
      }
      else
      {
            format( file, sizeof( file ), USERS_FILE, gPlayers[ playerid ] );
         new cash, bank;
         cash = dini_Int( file, "Cash" ), bank = dini_Int( file, "Bank" );

         format( szMsg, sizeof( szMsg ), "Cash:[ $%d ] Bank:[ $%d ]", cash, bank );
         SendClientMessage( playerid, COLOR_GREEN, szMsg );
      }
      return 1;
      }[/pawn]

5
Snippet Showroom / Random Messages By Fast
« on: August 08, 2014, 05:54:26 pm »
[pawn]
new RandomMessagesList[][] =
{
"Welcome Use !rules Before Playing",
"Want a weapon use !wep <name/id> Now!",
"New System by Fast",
};[/pawn]

Msg Timer
[pawn] SetTimer("RandomMessages", 50000, true);[/pawn]

Fuction On public
[pawn]forward RandomMessages();
public RandomMessages()//Public what sends the messages
{
SendClientMessageToAll(0xF6A113FF, RandomMessagesList[random(sizeof(RandomMessagesList))]);
}[/pawn]
My Server Showroom: www.nybsr.createaforum.com

6
ShowRoom (pawn) / Gups 2.0 by fast
« on: July 29, 2014, 01:47:57 pm »
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]



[pawn]   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;
   }[/pawn]

7
Snippet Showroom / !wep z ing gre
« on: July 24, 2014, 11:34:02 am »
[pawn][pawn]
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;
}[/pawn]
[color=purple][size=8pt]My Server Forum:www.nybsr.createaforum.com[/size][/color]

8
mIRC/pawn Scripting / Help me!!!!
« on: July 22, 2014, 11:27:50 am »
guyzz how to add Interior in Fight zone. please Help me :(

9
ShowRoom (pawn) / Sharks V/s Diez Script TDM Version 2.1
« on: July 01, 2014, 12:47:08 pm »
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

Pages: [1]