25.07.2009, 04:35
my lock / unlock scripts that I get usually only 50% of the time work people still jack me. im not sure if its that car jack hack or just some bad scripting.
if(!strcmp(cmdtext,"/lock",true,5)) {
new carid;
if (IsPlayerInAnyVehicle(playerid) && GetPlayerState(playerid)==PLAYER_STATE_DRIVER) {
GameTextForPlayer(playerid,"~r~LOCKED !",1000,1);
carid=GetPlayerVehicleID(playerid);
new i;
for (i=0;i<MAX_PLAYERS;i++){
if (i!=playerid) SetVehicleParamsForPlayer(carid,i,0,1);
}
return 1;
}
else
{
SendClientMessage(playerid, COLOR_ERROR, "ERROR : You need to be in a vehicle that you want to be unlocked.");
return 1;
}
}
if(!strcmp(cmdtext,"/unlock",true,7)) {
new carid;
if (IsPlayerInAnyVehicle(playerid) && GetPlayerState(playerid)==PLAYER_STATE_DRIVER) {
carid=GetPlayerVehicleID(playerid);
GameTextForPlayer(playerid,"~g~UNLOCKED !",1000,1);
new i;
for (i=0;i<MAX_PLAYERS;i++){
if (i!=playerid) SetVehicleParamsForPlayer(carid,i,0,0);
}
return 1;
}
else
{
SendClientMessage(playerid, COLOR_ERROR, "ERROR : You need to be in a vehicle as a driver that you want to be unlocked.");
return 1;
}
}
Originally Posted by ۞●•λвнiиаv•●۞
No Problem... Anytime ........ Please chnage the topic Name to [SOLVED] Lock/Unlock System
Thank You -Abhinav |