• Страница 1 из 1
  • 1
Модератор форума: dr40  
veh
Leo^Дата: Понедельник, 21.03.2011, 15:34 | Сообщение # 1
.::Offline::.
Блатной
Сообщений: 82
[ 9 ]
Награды: 0

Статус отсутствует
помогите улучшить команду из гф, /veh чтобы авто появлялось "перед носом". Тоесть пишешь "/veh ..." и авто падает перед тобой, а не просто на взятой оси "x" или "y" у игрока, но и чтобы как то задействовать угол поворота нверно, сам не могу =(

Code
    if(strcmp(cmd, "/veh", true) == 0)
  {
      if(IsPlayerConnected(playerid))
      {
          if (PlayerInfo[playerid][pAdmin] < 4)
    {
        SendClientMessage(playerid, COLOR_GRAD1, "   you are not authorized to use that command!");
        return 1;
    }
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
     SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
     return 1;
    }
    new car;
    car = strval(tmp);
    if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   Vehicle Number can't be below 400 or above 611 !"); return 1; }
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
     SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
     return 1;
    }
    new color1;
    color1 = strval(tmp);
    if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
     SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
     return 1;
    }
    new color2;
    color2 = strval(tmp);
    if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }
    new Float:X,Float:Y,Float:Z;
    GetPlayerPos(playerid, X,Y,Z);
    new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2, 60000);
    CreatedCars[CreatedCar] = carid;
    CreatedCar ++;
    format(string, sizeof(string), "   Vehicle %d spawned.", carid);
    SendClientMessage(playerid, COLOR_GREY, string);
   }
   return 1;
  }

Добавлено (21.03.2011, 14:34)
---------------------------------------------
или скажите название какого-нибудь мода где это уже есть

 
ZioHikДата: Понедельник, 21.03.2011, 16:40 | Сообщение # 2
.::Offline::.
http://u.to/N46EAw
Сообщений: 831
[ 82 ]
Награды: 29

Статус отсутствует
Code
    if(strcmp(cmd, "/veh", true) == 0)  
   {  
       if(IsPlayerConnected(playerid))  
       {  
           if (PlayerInfo[playerid][pAdmin] < 4)  
     {  
         SendClientMessage(playerid, COLOR_GRAD1, "   you are not authorized to use that command!");  
         return 1;  
     }  
     tmp = strtok(cmdtext, idx);  
     if(!strlen(tmp))  
     {  
      SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");  
      return 1;  
     }  
     new car;  
     car = strval(tmp);  
     if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   Vehicle Number can't be below 400 or above 611 !"); return 1; }  
     tmp = strtok(cmdtext, idx);  
     if(!strlen(tmp))  
     {  
      SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");  
      return 1;  
     }  
     new color1;  
     color1 = strval(tmp);  
     if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }  
     tmp = strtok(cmdtext, idx);  
     if(!strlen(tmp))  
     {  
      SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");  
      return 1;  
     }  
     new color2;  
     color2 = strval(tmp);  
     if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }  
     new Float:X,Float:Y,Float:Z;  
     GetPlayerPos(playerid, X,Y,Z);  
     new carid = CreateVehicle(car, X,Y+3,Z, 0.0, color1, color2, 60000)
     CreatedCars[CreatedCar] = carid;  
     CreatedCar ++;  
     format(string, sizeof(string), "   Vehicle %d spawned.", carid);  
     SendClientMessage(playerid, COLOR_GREY, string);  
    }  
    return 1;  
   }

попробуй

 
Leo^Дата: Понедельник, 21.03.2011, 16:48 | Сообщение # 3
.::Offline::.
Блатной
Сообщений: 82
[ 9 ]
Награды: 0

Статус отсутствует
ZioHik, не, так и я могу. мне надо чтобы она прямо в той стороне появлялась в которую смотрит персонаж.
 
ZioHikДата: Понедельник, 21.03.2011, 16:55 | Сообщение # 4
.::Offline::.
http://u.to/N46EAw
Сообщений: 831
[ 82 ]
Награды: 29

Статус отсутствует
Code
if(strcmp(cmd, "/veh", true) == 0)   
    {   
        if(IsPlayerConnected(playerid))   
        {   
            if (PlayerInfo[playerid][pAdmin] < 4)   
      {   
          SendClientMessage(playerid, COLOR_GRAD1, "   you are not authorized to use that command!");   
          return 1;   
      }   
      tmp = strtok(cmdtext, idx);   
      if(!strlen(tmp))   
      {   
       SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");   
       return 1;   
      }   
      new car;   
      car = strval(tmp);   
      if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   Vehicle Number can't be below 400 or above 611 !"); return 1; }   
      tmp = strtok(cmdtext, idx);   
      if(!strlen(tmp))   
      {   
       SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");   
       return 1;   
      }   
      new color1;   
      color1 = strval(tmp);   
      if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }   
      tmp = strtok(cmdtext, idx);   
      if(!strlen(tmp))   
      {   
       SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");   
       return 1;   
      }   
      new color2;   
      color2 = strval(tmp);   
      if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 or above 126 !"); return 1; }   
      new Float:X,Float:Y,Float:Z;   
      GetPlayerPos(playerid, X,Y,Z);   
      new carid = CreateVehicle(car, X,Y+3,Z, 0.0, color1, color2, 60000)  
      new Float:Angle;
GetPlayerFacingAngle(playerid, Angle);
SetVehicleZAngle(car, Angle/2);
      CreatedCars[CreatedCar] = carid;   
      CreatedCar ++;   
      format(string, sizeof(string), "   Vehicle %d spawned.", carid);   
      SendClientMessage(playerid, COLOR_GREY, string);   
     }   
     return 1;   
    }

во

 
Leo^Дата: Понедельник, 21.03.2011, 17:11 | Сообщение # 5
.::Offline::.
Блатной
Сообщений: 82
[ 9 ]
Награды: 0

Статус отсутствует
не угол поворота авто, а позицию, чтобы появлялась перед игроком в той стороне куда повернут персонаж.
 
ZioHikДата: Понедельник, 21.03.2011, 17:40 | Сообщение # 6
.::Offline::.
http://u.to/N46EAw
Сообщений: 831
[ 82 ]
Награды: 29

Статус отсутствует
это надо кординаты редактировать больше я не знаю как сделать
 
Warface_KillДата: Среда, 25.03.2015, 13:09 | Сообщение # 7
.::Offline::.
Новичок
Сообщений: 1
[ 0 ]
Награды: 0

Статус отсутствует
Всем привет,у меня такая проблема где найти инкулд veh_color?
 
  • Страница 1 из 1
  • 1
Поиск:


Copyright www.SAMP-TEAM.com (c) 2009-2024
Правила использования материалов сайта

При копировании материалов из нашего сайта
ссылка на www.SAMP-TEAM.com обязательна!
Нарушители правил будут строго наказаны!

Хостинг от uCoz   
Для корректного просмотра мы рекомендуем Вам использовать браузер Google Chrome.
Яндекс.Метрика
Яндекс.Метрика