05.01.2013, 18:49
Hi i have a bug when i try to /buycar in my server it crashes
but when i do the same on homehost it dosent
My script is zgaming
but when i do the same on homehost it dosent
My script is zgaming
|
CMD:buycar(playerid, params[]) { new string[128]; if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command."); if(!IsPlayerInRangeOfPoint(playerid, 2, 2427.5811,111.4386,26.4844)) return SendClientMessage(playerid, COLOR_GREY, "You are not near the vehicles dealership."); if(PlayerInfo[playerid][pVIP] >= 2) { if(PlayerInfo[playerid][vModel] && PlayerInfo[playerid][vVModel]) { format(string, sizeof(string), "You already own vehicles ID %d and %d.", PlayerInfo[playerid][pVeh], PlayerInfo[playerid][pVVeh]); SendClientMessage(playerid, COLOR_GREY, string); return 1; } else ShowDialog(playerid, 10); return 1; } if(PlayerInfo[playerid][vModel]) { format(string, sizeof(string), "You already own vehicle ID %d.", PlayerInfo[playerid][pVeh]); SendClientMessage(playerid, COLOR_GREY, string); return 1; } ShowDialog(playerid, 10); return 1; } |
CMD:buycar(playerid, params[])
{
new string[128];
if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
if(!IsPlayerInRangeOfPoint(playerid, 2, -2033.0985,-117.4479,1035.1719)) return SendClientMessage(playerid, COLOR_GREY, "You are not near the vehicles dealership.");
if(PlayerInfo[playerid][pVIP] >= 2)
{
if(PlayerInfo[playerid][vModel] && PlayerInfo[playerid][vVModel])
{
format(string, sizeof(string), "You already own vehicles ID %d and %d.", PlayerInfo[playerid][pVeh], PlayerInfo[playerid][pVVeh]);
SendClientMessage(playerid, COLOR_GREY, string);
return 1;
}
else ShowDialog(playerid, 10);
return 1;
}
if(PlayerInfo[playerid][vModel])
{
format(string, sizeof(string), "You already own vehicle ID %d.", PlayerInfo[playerid][pVeh]);
SendClientMessage(playerid, COLOR_GREY, string);
return 1;
}
ShowDialog(playerid, 10);
return 1;
}