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.


Messages - [NYB]fast:p

Pages: [1] 2
1
Servers / Re: VCES Server
« on: November 06, 2014, 09:59:52 am »
Clan system bug this time fix clansystem ;D ;D ;D

2
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

3
mIRC/pawn Scripting / Re: HELP
« on: October 11, 2014, 11:49:08 am »

4
mIRC/pawn Scripting / Re: Need scripting help!
« on: August 26, 2014, 09:34:08 am »
not work!!!

5
mIRC/pawn Scripting / Re: Help with my Pawn Script pls
« on: August 26, 2014, 09:33:00 am »
tell me u add fight cmd or fuction????

6
Snippet Showroom / Re: Simple news system
« on: August 24, 2014, 03:06:18 pm »
Nice but no thakns :p

7
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

8
ShowRoom (pawn) / SKW script v2.0
« on: August 23, 2014, 02:46:36 pm »

9
ShowRoom (pawn) / Re: [INCLUDE UNTESTED] NE Database system
« on: August 23, 2014, 02:42:25 pm »
oh man link not not working!!!   >:(

10
Snippet Showroom / Re: Disable Weapons/ Restore In bank [Snippet By me ]
« on: August 21, 2014, 08:37:24 am »
Not working!!!!

12
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]

13
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

15
ShowRoom (pawn) / Re: Gups 2.0 Releases Soon by fast
« on: August 02, 2014, 02:16:24 pm »
ik man
 

Pages: [1] 2