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 - YoMan

Pages: [1] 2
1
mIRC/pawn Scripting / Can u Tell me?
« on: April 14, 2012, 11:53:57 pm »
hy guys can u tell me that what is the use of it

 OnRconCommand(cmdtext[])

PAWN

2
mIRC/pawn Scripting / Re: OnVehicleRespawn & OnPlayerDecreaseHealth
« on: March 12, 2012, 06:29:21 am »
I think No its only is sql

3
mIRC/pawn Scripting / Re: !report
« on: March 11, 2012, 11:11:50 am »
hahahaha i have 20 or 30 warning in my Simple Script i dont remove them just script

4
mIRC/pawn Scripting / Re: Skins
« on: March 10, 2012, 01:33:11 pm »
Warning Compile the Script But the Error Cant Compile

5
mIRC/pawn Scripting / Re: Cmd Problem
« on: March 09, 2012, 12:23:38 am »
u have to make a topic then i will give u

6
mIRC/pawn Scripting / Re: new cmd
« on: March 07, 2012, 02:09:42 pm »
thnxs

7
mIRC/pawn Scripting / Re: Some questions of Sql
« on: March 07, 2012, 01:17:23 pm »
i download FBS Now how to Start server

8
mIRC/pawn Scripting / Re: new cmd
« on: March 07, 2012, 01:02:32 pm »
thanks if u like my script then plzzz register on bsgclan.smffy.com

9
mIRC/pawn Scripting / Some questions of Sql
« on: March 06, 2012, 04:58:52 pm »
hy guys i have some ques
1:- Where Can i Find a Simple nICE scritped sql server??
2:-How To start Sql server??
3:-How To add cmds in sql Server??

Plzzz Help

10
mIRC/pawn Scripting / new cmd
« on: March 06, 2012, 03:34:32 pm »
Hi all guys i made a !giveheal cmd u can take it

Code: [Select]
else if ( strcmp( cmd, "!giveheal", true ) == 0 )
{
new snick[ 128 ], plr, szMsg[ 128 ];
snick = strtok( cmdtext, idx ), plr = FindPlayerIDFromString( snick );
   if ( plr == INACTIVE_PLAYER_ID ) SendClientMessage( playerid, COLOR_RED, "Error: Unknown player" );
else
{
format( szMsg, sizeof( szMsg ), "%s Give Health to %s", gPlayers[ playerid ], gPlayers[ plr ]);
SendClientMessageToAll( COLOR_GREEN, szMsg );
SetPlayerHealth( plr, 100.0 );
GameTextForPlayer( plr,"Thanks Him", gPlayers[ playerid ]);
}
return 1;
}

IF u like it then plzz dont forgot to register on www.bsgclan.smffy.com

11
mIRC/pawn Scripting / Re: This cmd help u
« on: March 04, 2012, 03:58:51 pm »
Fuzzy this is Pawn but  i made this Cmd for my Gups and i leaved Gups now now i m scripting on Simple Script and i made many cmd like Ban Kick !admins and many more thankx

12
mIRC/pawn Scripting / Help!!!!
« on: March 04, 2012, 04:20:03 am »
guys i m scripting on fresh script so i need registering system i take the filterscript of it but when i register it crash the server help me plzzzz

13
mIRC/pawn Scripting / Re: This cmd help u
« on: March 03, 2012, 08:00:51 pm »
Sorry But u like it or not??

14
mIRC/pawn Scripting / This cmd help u
« on: March 03, 2012, 05:28:30 pm »
hy guys i made !forum cmd in different language becuz every people have their country language so i add many language in !forum cmd that people see there country language and uderstand what i want to say them so take this cmd

Code: [Select]
else if ( strcmp( cmd, "!forum", true ) == 0 )
{
if ( !IsLoggedIn( playerid ) ) SendClientMessage( playerid, COLOR_RED, "Please log-in to your account." );
else
{
SendClientMessage( playerid, COLOR_GREEN, "[English]Register on this website www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[Espanol]Registrarse en este sitio web www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[Portugues]Registre se neste site www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[France]Inscrivez vous sur ce site Web www.bsgclan.smffy.com" );
   SendClientMessage( playerid, COLOR_GREEN, "[Vietnam]dang ky tren trang Web nay www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[Turkey]Bu Web Sitesinde Kayit www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[Italian]Registrati su questo sito www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[Latin]Subcriptio in hoc Website www.bsgclan.smffy.com" );
SendClientMessage( playerid, COLOR_GREEN, "[Swedish]Registrera dig pa denna webbplats www.bsgclan.smffy.com" );
                      }
                      return 1;
                      }


i know this is simple cmd but i take 10 mins to Make it
Credits goes to Google Translator and me

15
mIRC/pawn Scripting / Cmd Problem
« on: March 03, 2012, 02:39:34 pm »
guys i made this cmd to !gotoloc with vehicle but its not working

Code: [Select]
    else if ( strcmp( cmd, "!gotoloc", true ) == 0 )
{
new vehicle;
  tmp = strtok( cmdtext, idx );
if ( !IsLoggedIn( playerid ) ) SendClientMessage( playerid, COLOR_RED, "Please log-in to your account." );
else if ( !IsAuthorized( playerid, cmd ) ) SendClientMessage( playerid, COLOR_RED, "You don't have access to use this command!" );
else if ( !strlen( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "USAGE: !gotoloc [Name]" );
else
{
    new splitx[ 3 ][ 128 ], szMsg[ 128 ];
    if ( !IsLocationExist( tmp ) )
{
    format( szMsg, sizeof( szMsg ), "Location:[ %s ] does not exist.", tmp );
SendClientMessage( playerid, COLOR_GREEN, szMsg );
return 1;
    }
    split( dini_Get( "/SavedLocations/Locations.ini", tmp ), splitx, ' ' );
   
    SetPlayerPos( playerid, floatstr( splitx[ 0 ] ), floatstr( splitx[ 1 ] ), floatstr( splitx[ 2 ] ), 0, 0 );
    SetVehiclePos( vehicle, floatstr( splitx[ 0 ] ), floatstr( splitx[ 1 ] ), floatstr( splitx[ 2 ] ), 0, 0 );
    format( szMsg, sizeof( szMsg ), "Teleporting to location:[ %s ]", tmp );
SendClientMessage( playerid, COLOR_GREEN, szMsg );
}
return 1;
    }

help me

Pages: [1] 2