1)Ваш возраст : 14
2)Ваши примеры работ(если есть) : Нету))
3)Что вы можете предложить от себя : Какую то финансовую помощь...Тестить могу...И есле что могу помочь
4)Напишите 1 любую свою функцию или любую команду (просто легенький пример, ОБЯЗАТЕЛЬНО если нету пункта 2) :
Code
if(strcmp(cmd, "/чатвмашине", true) == 0 )
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_LIGHTRED, "USAGE: /чатвмашине [text]");
return 1;
}
if(IsPlayerInAnyVehicle(playerid))
{
format(string, sizeof(string), "Чат в машине (%s): %s", sendername, result);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInVehicle(i, GetPlayerVehicleID(playerid)))
{
SendClientMessage(i,COLOR_LIGHTBLUE, string);
}
}
}
return 1;
}
else
{
SendClientMessage(playerid, COLOR_RED, "Тебе нужна тача нах");
return 1;
}
}
Хрень глупая но всё же код)) 