Problem
#1

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
Reply
#2

i have edited the gamemode but like i dowloaded a clean version put it on my host and it still crashes
Reply
#3

What about plugins? Maybe them are causing crashes?
Reply
#4

Make sure you have all plugins loaded in. Check your server.cfg file.

Also make sure the server your running is allowing certain plugins to work.
Reply
#5

Upload all the files and folders on host.
Reply
#6

Try using another /buycar command or post the command here so we can check
Reply
#7

Quote:

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;
}

there
Reply
#8

Try this one:

Код:
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;
}
Reply
#9

Still the same fcking thing
Reply
#10

Quote:
Originally Posted by Stefan_Merce
Посмотреть сообщение
Still the same fcking thing
Does it give error ? What kind of command you want?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)