Vice City Multiplayer
VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: jimmy on January 15, 2012, 01:13:10 pm
-
hey guys i am making a cmd !stopcar and !startcar see this what i did wrong in it
else if ( strcmp( cmd, "!stopcar", true ) == 0 )
{
tmp = strtok(cmdtext, idx);
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "You need to login first!");
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: !stopcar [VehicleID]");
else if(IsVehicleOwnedShared(strval(tmp),gPlayers[playerid]) == -1) SendClientMessage(playerid,COLOR_GREEN, "You do not have the keys for Stop that vehicle.");
else {
new vehicle = strval( tmp )
SendClientMessage( playerid, RED, "You stopped Car" );
GetVehicleStop( vehicleid );
}
return 1;
}
else if ( strcmp( cmd, "!startcar", true ) == 0 )
{
tmp = strtok(cmdtext, idx);
if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_RED, "You need to login first!");
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: !startcar [VehicleID]");
else if(IsVehicleOwnedShared(strval(tmp),gPlayers[playerid]) == -1) SendClientMessage(playerid,COLOR_GREEN, "You do not have the keys for start that vehicle.");
else {
new vehicle = strval( tmp )
SendClientMessage( playerid, RED, "You started Car" );
SetVehicleStart( vehicleid );
}
return 1;
}
-
take this stopcar
else if ( strcmp( cmd, "!stopcar", 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: !stopcar [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 Are Not Owner Of This Car." );
else
{
new vehicle = strval( tmp );
SendClientMessage( playerid, RED, "You Stopped Car....!!!" );
KillVehicleEngine( vehicle );
}
return 1;
}
-
Nice !
-
jimmy. Before you post a SCRIPT / SNIPPET.. ADD [pawn] SCRIPT HERE [/pawn]
YOU CAN SEE THE PAWN ICON IN THE MENU FOR POSTING.
And ....
SetVehicleStart( vehicleid );
(http://www.toptenz.net/wp-content/uploads/2010/08/what_are_you_doing.jpg)