Szerző Téma: /parkol,/ajtó,/ajtó2,/kocsinyit hiba!!!  (Megtekintve 517 alkalommal)

/parkol,/ajtó,/ajtó2,/kocsinyit hiba!!!
« Dátum: 2013. Február 06. - 21:00:39 »
0 Show voters
   if(strcmp(cmd, \"/parkol\", true) == 0)
        {
            new Float:x,Float:y,Float:z;
      new Float:a;
      new carid;
      new getcarid;
      if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey]) { carid = PlayerInfo[playerid][pPcarkey]; }
      else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey2]) { carid = PlayerInfo[playerid][pPcarkey2]; }
      else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey3]) { carid = PlayerInfo[playerid][pPcarkey3]; }
      else { return 1; }
      getcarid = GetPlayerVehicleID(playerid);
      GetPlayerName(playerid, playername, sizeof(playername));
      GetVehiclePos(carid, x, y, z);
      //GetPlayerFacingAngle(playerid, a);
      GetVehicleZAngle(carid, a);
      if(IsPlayerInVehicle(playerid,carid) && CarInfo[carid][cOwned] == 1)
      {
            if(PlayerInfo[playerid][pPcarkey] == 999 && PlayerInfo[playerid][pPcarkey2] == 999 & PlayerInfo[playerid][pPcarkey3])
         {
            SendClientMessage(playerid, COLOR_GRAD2, \"Nincs jármûved!\");
            return 1;
         }
         if(getcarid == carid)
         {
            CarInfo[carid][cLocationx] = x;
            CarInfo[carid][cLocationy] = y;
            CarInfo[carid][cLocationz] = z;
            CarInfo[carid][cAngle] = a;
            SendClientMessage(playerid,COLOR_WHITE,\"Sikeresen leparkoltad a jármûvedet! Legközelebb is itt fogod megtalálni!\");
            SaveCarCoords();
            OnPlayerUpdate(playerid);
            DestroyVehicle(carid);
            CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
            TogglePlayerControllable(playerid, 1);
            format(string, sizeof(string), \"LV-%d\", carid);
              SetVehicleNumberPlate(carid, string);
              AddVehicleComponent(carid,CarInfo[carid][cKerek]);
            ChangeVehiclePaintjob(carid, CarInfo[carid][cPaintjob]-1);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet1]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet2]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet3]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet4]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet5]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet6]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet7]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet8]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet9]);
            AddVehicleComponent(carid,CarInfo[carid][cKinezet10]);
            AddVehicleComponent(carid,CarInfo[carid][cNitro]);
            AddVehicleComponent(carid,CarInfo[carid][cHidraulika]);
            format(string, sizeof(string), \"LV-%d\", carid);
              SetVehicleNumberPlate(carid, string);
            return 1;
                  }
      }
        }
if(strcmp(cmd, \"/ajtó\", true) == 0 || strcmp(cmd, \"/ajto\", true) == 0)
        {
                new keycar = PlayerInfo[playerid][pPcarkey];
                if(keycar != 999)
                {
                    new locked[256];
                    locked = strtok(cmdtext, idx);
                    if(CarInfo[keycar][cLock] == 1)
                    {
                       for(new i = 0; i < MAX_PLAYERS; i++)
            {
               if (IsPlayerConnected(i))
               {
                  SetVehicleParamsForPlayer(keycar,i,0,0);
               }
            }
            SendClientMessage(playerid,COLOR_WHITE,\"Kinyitottad az autód!\");
            CarInfo[keycar][cLock] = 0;
            SaveCarCoords();
            new nev[32];
            GetPlayerName(playerid, nev, sizeof(nev));
            new h,mi,s,y,m,d;
            getdate(y,m,d);
            gettime(h,mi,s);
            format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s kinyitotta az autóját.\",y,m,d,h,mi,s,nev);
            LoOoG(stringx);
            format(string, sizeof(string), \"* %s kinyitja az autóját.\", nev);
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            SetPlayerChatBubble(playerid, \"kinyitja az autóját.\", COLOR_PURPLE, 80.0, 10000);
            return 1;
         }
         else if(CarInfo[keycar][cLock] == 0)
         {
             for(new i = 0; i < MAX_PLAYERS; i++)
            {
               if (IsPlayerConnected(i))
               {
                  SetVehicleParamsForPlayer(keycar,i,0,1);
               }
            }
            SendClientMessage(playerid,COLOR_WHITE,\"Bezártad az autód!\");
            CarInfo[keycar][cLock] = 1;
            SaveCarCoords();
            new nev[32];
            GetPlayerName(playerid, nev, sizeof(nev));
            new h,mi,s,y,m,d;
            getdate(y,m,d);
            gettime(h,mi,s);
            format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s bezárta az autóját.\",y,m,d,h,mi,s,nev);
            LoOoG(stringx);
            format(string, sizeof(string), \"* %s bezárja az autóját.\", nev);
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            SetPlayerChatBubble(playerid, \"bezárja az autóját.\", COLOR_PURPLE, 80.0, 10000);
            return 1;
         }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD2, \"Nincs autód!\");
                    return 1;
                }
        }
if(strcmp(cmd, \"/ajtó2\", true) == 0 || strcmp(cmd, \"/ajto2\", true) == 0)
        {
                new keycar = PlayerInfo[playerid][pPcarkey2];
                if(keycar != 999)
                {
                    new locked[256];
                    locked = strtok(cmdtext, idx);
                    if(CarInfo[keycar][cLock] == 1)
                    {
                       for(new i = 0; i < MAX_PLAYERS; i++)
            {
               if (IsPlayerConnected(i))
               {
                  SetVehicleParamsForPlayer(keycar,i,0,0);
               }
            }
            SendClientMessage(playerid,COLOR_WHITE,\"Kinyitottad az autód!\");
            CarInfo[keycar][cLock] = 0;
            SaveCarCoords();
            new nev[32];
            GetPlayerName(playerid, nev, sizeof(nev));
            new h,mi,s,y,m,d;
            getdate(y,m,d);
            gettime(h,mi,s);
            format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s kinyitotta az autóját.\",y,m,d,h,mi,s,nev);
            LoOoG(stringx);
            format(string, sizeof(string), \"* %s kinyitja az autóját.\", nev);
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            SetPlayerChatBubble(playerid, \"kinyitja az autóját.\", COLOR_PURPLE, 80.0, 10000);
            return 1;
         }
         else if(CarInfo[keycar][cLock] == 0)
         {
             for(new i = 0; i < MAX_PLAYERS; i++)
            {
               if (IsPlayerConnected(i))
               {
                  SetVehicleParamsForPlayer(keycar,i,0,1);
               }
            }
            SendClientMessage(playerid,COLOR_WHITE,\"Bezártad az autód!\");
            CarInfo[keycar][cLock] = 1;
            SaveCarCoords();
            new nev[32];
            GetPlayerName(playerid, nev, sizeof(nev));
            new h,mi,s,y,m,d;
            getdate(y,m,d);
            gettime(h,mi,s);
            format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s bezárta az autóját.\",y,m,d,h,mi,s,nev);
            LoOoG(stringx);
            format(string, sizeof(string), \"* %s bezárja az autóját.\", nev);
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            SetPlayerChatBubble(playerid, \"bezárja az autóját.\", COLOR_PURPLE, 80.0, 10000);
            return 1;
         }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD2, \"Nincs autód!\");
                    return 1;
                }
        }
if(strcmp(cmd, \"/kocsinyit\", true) == 0)
        {
                new keycar = PlayerInfo[playerid][pPcarkey];
                if(!Admin(playerid, 3))
                {
                    return 1;
                }
                if(keycar != 999)
                {
                    new locked[256];
                    locked = strtok(cmdtext, idx);
                    if(CarInfo[keycar][cLock] == 1)
                    {
                       for(new i = 0; i < MAX_PLAYERS; i++)
            {
               if (IsPlayerConnected(i))
               {
                  SetVehicleParamsForPlayer(keycar,i,0,0);
               }
            }
            SendClientMessage(playerid,COLOR_WHITE,\"Kinyitottad az autód!\");
            CarInfo[keycar][cLock] = 0;
            SaveCarCoords();
            new nev[32];
            GetPlayerName(playerid, nev, sizeof(nev));
            new h,mi,s,y,m,d;
            getdate(y,m,d);
            gettime(h,mi,s);
            format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s kinyitotta az autóját.\",y,m,d,h,mi,s,nev);
            LoOoG(stringx);
            format(string, sizeof(string), \"* %s kinyitja az autóját.\", nev);
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            SetPlayerChatBubble(playerid, \"kinyitja az autóját.\", COLOR_PURPLE, 80.0, 10000);
            return 1;
         }
         else if(CarInfo[keycar][cLock] == 0)
         {
             for(new i = 0; i < MAX_PLAYERS; i++)
            {
               if (IsPlayerConnected(i))
               {
                  SetVehicleParamsForPlayer(keycar,i,0,1);
               }
            }
            SendClientMessage(playerid,COLOR_WHITE,\"Bezártad az autód!\");
            CarInfo[keycar][cLock] = 1;
            SaveCarCoords();
            new nev[32];
            GetPlayerName(playerid, nev, sizeof(nev));
            new h,mi,s,y,m,d;
            getdate(y,m,d);
            gettime(h,mi,s);
            format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s bezárta az autóját.\",y,m,d,h,mi,s,nev);
            LoOoG(stringx);
            format(string, sizeof(string), \"* %s bezárja az autóját.\", nev);
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            SetPlayerChatBubble(playerid, \"bezárja az autóját.\", COLOR_PURPLE, 80.0, 10000);
            return 1;
         }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD2, \"Nincs autód!\");
                    return 1;
                }
        }

 
========================================================================
Amikor beirom ezeket a parancsokat:/parkol,/ajtó,/ajtó2,/kocsinyit akkor azt írja ki hogy a mod nem ismer ilyen parancsot pedig RPG modhoz való!! Segitene valaki??????
« Utoljára szerkesztve: 2013. Február 07. - 09:39:50 írta Rupert »

Nem elérhető ZyZu.

  • Globális moderátor
  • 8939
  • my turbo diesel forum
  • Discord: ZyZu.
    • Profil megtekintése
/parkol,/ajtó,/ajtó2,/kocsinyit hiba!!!
« Válasz #1 Dátum: 2013. Február 06. - 21:15:04 »
0 Show voters
1. Ragd code tagok közzé mert így nem átlátható! [ code ]  [ /code ] aztán segítünk!

/parkol,/ajtó,/ajtó2,/kocsinyit hiba!!!
« Válasz #2 Dátum: 2013. Február 06. - 21:21:52 »
0 Show voters
if(strcmp(cmd, \"/parkol\", true) == 0)
           {
               new Float:x,Float:y,Float:z;
            new Float:a;
            new carid;
            new getcarid;
            if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey]) { carid = PlayerInfo[playerid][pPcarkey]; }
            else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey2]) { carid = PlayerInfo[playerid][pPcarkey2]; }
            else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey3]) { carid = PlayerInfo[playerid][pPcarkey3]; }
            else { return 1; }
            getcarid = GetPlayerVehicleID(playerid);
            GetPlayerName(playerid, playername, sizeof(playername));
            GetVehiclePos(carid, x, y, z);
            //GetPlayerFacingAngle(playerid, a);
            GetVehicleZAngle(carid, a);
            if(IsPlayerInVehicle(playerid,carid) && CarInfo[carid][cOwned] == 1)
            {
                  if(PlayerInfo[playerid][pPcarkey] == 999 && PlayerInfo[playerid][pPcarkey2] == 999 & PlayerInfo[playerid][pPcarkey3])
               {
                  SendClientMessage(playerid, COLOR_GRAD2, \"Nincs jármûved!\");
                  return 1;
               }
               if(getcarid == carid)
               {
                  CarInfo[carid][cLocationx] = x;
                  CarInfo[carid][cLocationy] = y;
                  CarInfo[carid][cLocationz] = z;
                  CarInfo[carid][cAngle] = a;
                  SendClientMessage(playerid,COLOR_WHITE,\"Sikeresen leparkoltad a jármûvedet! Legközelebb is itt fogod megtalálni!\");
                  SaveCarCoords();
                  OnPlayerUpdate(playerid);
                  DestroyVehicle(carid);
                  CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
                  TogglePlayerControllable(playerid, 1);
                  format(string, sizeof(string), \"LV-%d\", carid);
                    SetVehicleNumberPlate(carid, string);
                    AddVehicleComponent(carid,CarInfo[carid][cKerek]);
                  ChangeVehiclePaintjob(carid, CarInfo[carid][cPaintjob]-1);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet1]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet2]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet3]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet4]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet5]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet6]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet7]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet8]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet9]);
                  AddVehicleComponent(carid,CarInfo[carid][cKinezet10]);
                  AddVehicleComponent(carid,CarInfo[carid][cNitro]);
                  AddVehicleComponent(carid,CarInfo[carid][cHidraulika]);
                  format(string, sizeof(string), \"LV-%d\", carid);
                    SetVehicleNumberPlate(carid, string);
                  return 1;
                  }
            }
           }
   if(strcmp(cmd, \"/ajtó\", true) == 0 || strcmp(cmd, \"/ajto\", true) == 0)
           {
                new keycar = PlayerInfo[playerid][pPcarkey];
                if(keycar != 999)
                {
                    new locked[256];
                    locked = strtok(cmdtext, idx);
                    if(CarInfo[keycar][cLock] == 1)
                    {
                       for(new i = 0; i < MAX_PLAYERS; i++)
                  {
                     if (IsPlayerConnected(i))
                     {
                        SetVehicleParamsForPlayer(keycar,i,0,0);
                     }
                  }
                  SendClientMessage(playerid,COLOR_WHITE,\"Kinyitottad az autód!\");
                  CarInfo[keycar][cLock] = 0;
                  SaveCarCoords();
                  new nev[32];
                  GetPlayerName(playerid, nev, sizeof(nev));
                  new h,mi,s,y,m,d;
                  getdate(y,m,d);
                  gettime(h,mi,s);
                  format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s kinyitotta az autóját.\",y,m,d,h,mi,s,nev);
                  LoOoG(stringx);
                  format(string, sizeof(string), \"* %s kinyitja az autóját.\", nev);
                  ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                  SetPlayerChatBubble(playerid, \"kinyitja az autóját.\", COLOR_PURPLE, 80.0, 10000);
                  return 1;
               }
               else if(CarInfo[keycar][cLock] == 0)
               {
                   for(new i = 0; i < MAX_PLAYERS; i++)
                  {
                     if (IsPlayerConnected(i))
                     {
                        SetVehicleParamsForPlayer(keycar,i,0,1);
                     }
                  }
                  SendClientMessage(playerid,COLOR_WHITE,\"Bezártad az autód!\");
                  CarInfo[keycar][cLock] = 1;
                  SaveCarCoords();
                  new nev[32];
                  GetPlayerName(playerid, nev, sizeof(nev));
                  new h,mi,s,y,m,d;
                  getdate(y,m,d);
                  gettime(h,mi,s);
                  format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s bezárta az autóját.\",y,m,d,h,mi,s,nev);
                  LoOoG(stringx);
                  format(string, sizeof(string), \"* %s bezárja az autóját.\", nev);
                  ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                  SetPlayerChatBubble(playerid, \"bezárja az autóját.\", COLOR_PURPLE, 80.0, 10000);
                  return 1;
               }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD2, \"Nincs autód!\");
                    return 1;
                }
           }
   if(strcmp(cmd, \"/ajtó2\", true) == 0 || strcmp(cmd, \"/ajto2\", true) == 0)
           {
                new keycar = PlayerInfo[playerid][pPcarkey2];
                if(keycar != 999)
                {
                    new locked[256];
                    locked = strtok(cmdtext, idx);
                    if(CarInfo[keycar][cLock] == 1)
                    {
                       for(new i = 0; i < MAX_PLAYERS; i++)
                  {
                     if (IsPlayerConnected(i))
                     {
                        SetVehicleParamsForPlayer(keycar,i,0,0);
                     }
                  }
                  SendClientMessage(playerid,COLOR_WHITE,\"Kinyitottad az autód!\");
                  CarInfo[keycar][cLock] = 0;
                  SaveCarCoords();
                  new nev[32];
                  GetPlayerName(playerid, nev, sizeof(nev));
                  new h,mi,s,y,m,d;
                  getdate(y,m,d);
                  gettime(h,mi,s);
                  format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s kinyitotta az autóját.\",y,m,d,h,mi,s,nev);
                  LoOoG(stringx);
                  format(string, sizeof(string), \"* %s kinyitja az autóját.\", nev);
                  ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                  SetPlayerChatBubble(playerid, \"kinyitja az autóját.\", COLOR_PURPLE, 80.0, 10000);
                  return 1;
               }
               else if(CarInfo[keycar][cLock] == 0)
               {
                   for(new i = 0; i < MAX_PLAYERS; i++)
                  {
                     if (IsPlayerConnected(i))
                     {
                        SetVehicleParamsForPlayer(keycar,i,0,1);
                     }
                  }
                  SendClientMessage(playerid,COLOR_WHITE,\"Bezártad az autód!\");
                  CarInfo[keycar][cLock] = 1;
                  SaveCarCoords();
                  new nev[32];
                  GetPlayerName(playerid, nev, sizeof(nev));
                  new h,mi,s,y,m,d;
                  getdate(y,m,d);
                  gettime(h,mi,s);
                  format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s bezárta az autóját.\",y,m,d,h,mi,s,nev);
                  LoOoG(stringx);
                  format(string, sizeof(string), \"* %s bezárja az autóját.\", nev);
                  ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                  SetPlayerChatBubble(playerid, \"bezárja az autóját.\", COLOR_PURPLE, 80.0, 10000);
                  return 1;
               }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD2, \"Nincs autód!\");
                    return 1;
                }
           }
   if(strcmp(cmd, \"/kocsinyit\", true) == 0)
           {
                new keycar = PlayerInfo[playerid][pPcarkey];
                if(!Admin(playerid, 3))
                {
                    return 1;
                }
                if(keycar != 999)
                {
                    new locked[256];
                    locked = strtok(cmdtext, idx);
                    if(CarInfo[keycar][cLock] == 1)
                    {
                       for(new i = 0; i < MAX_PLAYERS; i++)
                  {
                     if (IsPlayerConnected(i))
                     {
                        SetVehicleParamsForPlayer(keycar,i,0,0);
                     }
                  }
                  SendClientMessage(playerid,COLOR_WHITE,\"Kinyitottad az autód!\");
                  CarInfo[keycar][cLock] = 0;
                  SaveCarCoords();
                  new nev[32];
                  GetPlayerName(playerid, nev, sizeof(nev));
                  new h,mi,s,y,m,d;
                  getdate(y,m,d);
                  gettime(h,mi,s);
                  format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s kinyitotta az autóját.\",y,m,d,h,mi,s,nev);
                  LoOoG(stringx);
                  format(string, sizeof(string), \"* %s kinyitja az autóját.\", nev);
                  ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                  SetPlayerChatBubble(playerid, \"kinyitja az autóját.\", COLOR_PURPLE, 80.0, 10000);
                  return 1;
               }
               else if(CarInfo[keycar][cLock] == 0)
               {
                   for(new i = 0; i < MAX_PLAYERS; i++)
                  {
                     if (IsPlayerConnected(i))
                     {
                        SetVehicleParamsForPlayer(keycar,i,0,1);
                     }
                  }
                  SendClientMessage(playerid,COLOR_WHITE,\"Bezártad az autód!\");
                  CarInfo[keycar][cLock] = 1;
                  SaveCarCoords();
                  new nev[32];
                  GetPlayerName(playerid, nev, sizeof(nev));
                  new h,mi,s,y,m,d;
                  getdate(y,m,d);
                  gettime(h,mi,s);
                  format(stringx,sizeof(stringx), \"[%d/%d/%d][%d:%d:%d] %s bezárta az autóját.\",y,m,d,h,mi,s,nev);
                  LoOoG(stringx);
                  format(string, sizeof(string), \"* %s bezárja az autóját.\", nev);
                  ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                  SetPlayerChatBubble(playerid, \"bezárja az autóját.\", COLOR_PURPLE, 80.0, 10000);
                  return 1;
               }
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GRAD2, \"Nincs autód!\");
                    return 1;
                }
           }

 

SimplePortal 2.3.7 © 2008-2024, SimplePortal