14:09
ОбновитьСмайлыУправление мини-чатом
МИНИ-ЧАТ
Главная страница!

 



 
          





Рекомендуем:





Последние Файлы GTA 4 Последние Файлы GTA-MP Реклама
Скрипт GTA 4 элементы Watch... 07.09.2014
Ferrari 360 Spider [EPM con... 13.12.2013
Porsche Cayenne Turbo 2012 ... 13.12.2013
Shelby Terlingua Mustang v1... 13.12.2013
Hamann Lamborghini Gallardo... 27.10.2013
[GM] The Big PEN1:LS v2.00 ... 04.12.2017
Dgun (AvnanceRP,SampRP,Dimo... 19.03.2016
SAMP скрипт SX Events (MySQ... 03.03.2016
Карта ASL мэрия для SAMP се... 03.03.2016
AIM для SA-MP 0.3.7 22.02.2016
Модератор форума: Alcoholik  
Модификации The Godfather
ZEMДата: Воскресенье, 07.03.2010, 14:21 | Сообщение # 526
Новенький
Группа: Пользователи
Сообщений: 62
Награды: 0
Город: LS
Репутация: 8
Замечания: 0%
Статус:
batman123, отличная команда /tpto тока как дать +? :) suicide2
_LexA_Дата: Воскресенье, 07.03.2010, 14:30 | Сообщение # 527
Долгожитель
Группа: Продвинутые
Сообщений: 1437
Награды: 161
Город: Ростов-на-Дону
Репутация: 563
Замечания: 20%
Статус:
ZEM, читай.
Tray_RasonДата: Понедельник, 08.03.2010, 21:55 | Сообщение # 528
Новенький
Группа: Пользователи
Сообщений: 32
Награды: 0
Город: Алатырь
Репутация: 0
Замечания: 0%
Статус:
Выложите кто-нибудь команду /members
_LexA_Дата: Понедельник, 08.03.2010, 22:16 | Сообщение # 529
Долгожитель
Группа: Продвинутые
Сообщений: 1437
Награды: 161
Город: Ростов-на-Дону
Репутация: 563
Замечания: 20%
Статус:
Tray_Rason,
[pwn]if(strcmp(cmd,"/members",true)==0)
{
if(IsPlayerConnected(playerid))
{
new teamnumber;
if (PlayerInfo[playerid][pLeader] != 0) teamnumber = PlayerInfo[playerid][pLeader];
else if (PlayerInfo[playerid][pMember] != 0) teamnumber = PlayerInfo[playerid][pMember];
else
{
SendClientMessage(playerid, COLOR_GRAD1, "Вы не состоите в организации");
return 1;
}
SendClientMessage(playerid, COLOR_WHITE, "**Игроки, Вашей организации онлайн:**");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
GetPlayerName(i, sendername, sizeof(sendername));
format(string, sizeof(string), "");
if (PlayerInfo[i][pLeader] == teamnumber) format(string, sizeof(string), "%s (Лидер)",sendername);
else if (PlayerInfo[i][pMember] == teamnumber) format(string, sizeof(string), "%s, Ранк: %d.",sendername, PlayerInfo[i][pRank]);
if (strlen(string) > 1) SendClientMessage(playerid, COLOR_GRAD1, string);
}
}
}
return 1;
}[/pwn]

Ja$TДата: Понедельник, 08.03.2010, 22:32 | Сообщение # 530
Освоившийся
Группа: Пользователи
Сообщений: 93
Награды: 2
Город: Саранск
Репутация: 10
Замечания: 40%
Статус:
Ещё просьба,пожалуйста выложите кто нибудь команду смены админом ника игрока!!!! С переименованием файла,на Godfather :) :) :) БУДУ ОЧЕНЬ БЛАГОДАРЕН!!!!


www.2samp.tk

Мои работы:
[FS]Анти-флуд by JaST
[FS]SrvNameChanger
[FS]Trunk System FilterScript v.1.2 by JaST
[FS]Ingame Object Editor rev7 by BreadFish [RUS]
_LexA_Дата: Понедельник, 08.03.2010, 22:40 | Сообщение # 531
Долгожитель
Группа: Продвинутые
Сообщений: 1437
Награды: 161
Город: Ростов-на-Дону
Репутация: 563
Замечания: 20%
Статус:
Ja$T,
[pwn]if (strcmp(cmd, "/setname", true) == 0)
{
if (PlayerInfo[playerid][pAdmin] >= 2)
{
new nicktmp[19];
new string2[256];
new string3[256];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, " Использовать: /setname [ид игрока][новый ник]");
return 1;
}
giveplayerid = strval(tmp);
format(nicktmp, sizeof(nicktmp), "%s", strtok(cmdtext, idx));
if(!strlen(nicktmp))
{
SendClientMessage(playerid, COLOR_GRAD1, " Использовать: /setname [ид игрока][новый ник]");
return 1;
}
else
{
if(strlen(nicktmp) < 3)
{
SendClientMessage(playerid, COLOR_GRAD1, " * Cлишком короткий ник!");
return 1;
}
else if(strlen(nicktmp) > 19)
{
SendClientMessage(playerid, COLOR_GRAD1, " * Cлишком длиный ник!");
return 1;
}
format(string, sizeof(string), "%s.ini", nicktmp);
if(fexist(string))
{
SendClientMessage(playerid, COLOR_GRAD1, " * Этот ник уже занят");
return 1;
}
else
{
if(IsPlayerConnected(giveplayerid))
{
// OnPlayerRename(nicktmp,string,giveplayerid);
format(string, sizeof(string), " Теперь твой ник: %s", nicktmp);
SendClientMessage(giveplayerid, COLOR_RED, string);
GetPlayerName(giveplayerid, playername, sizeof(playername));
format(string3, sizeof(string3), " %s изменил себе ник на %s", playername, nicktmp);
SendClientMessageToAll(COLOR_LIGHTRED, string3);
format(string2, sizeof(string2), "%s.ini", playername);
fremove(string2);
SetPlayerName(giveplayerid, nicktmp);
return 1;
}
}
}
}
return 1;
}[/pwn]

Ja$TДата: Среда, 10.03.2010, 15:07 | Сообщение # 532
Освоившийся
Группа: Пользователи
Сообщений: 93
Награды: 2
Город: Саранск
Репутация: 10
Замечания: 40%
Статус:
Лёха,огромнейшее спасибо!!!! сори,МБ за флуд вы посчитаете,выложите пожалуйста команду чтобы сменять инфу о игроке когда он оффлайн,к примеру разбан, ЗАБАНЕНЫЙ ИГРОК pLocked = 1 мне нужно изменить на pLocked = 0 когда игрок в оффе....на гФ,выложите пожалуйста! :) заранее спс!


www.2samp.tk

Мои работы:
[FS]Анти-флуд by JaST
[FS]SrvNameChanger
[FS]Trunk System FilterScript v.1.2 by JaST
[FS]Ingame Object Editor rev7 by BreadFish [RUS]
JogoДата: Четверг, 11.03.2010, 17:11 | Сообщение # 533
Освоившийся
Группа: Пользователи
Сообщений: 81
Награды: 1
Город: NSK
Репутация: 3
Замечания: 0%
Статус:
не мои команды, но мб комунить пригодятся
Зареспавнить все автомобили сервера (Для админов)
[pwn]
//==============================================================================
if(strcmp(cmd, "/respawnallcars", true) == 0 || strcmp(cmd, "/res", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] < 1337)
{
SendClientMessage(playerid, COLOR_GRAD1, " Ты не авторизован для использования этой команды!");
return 1;
}
new bool:unwanted[CAR_AMOUNT];
for(new player=0; player<MAX_PLAYERS; player++)
{
if(IsPlayerInAnyVehicle(player)) { unwanted[GetPlayerVehicleID(player)]=true; }
}
for(new car = 1; car <= 268; car++)
{
if(!unwanted[car]) SetVehicleToRespawn(car);
}
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), " Сервер: Администратор зареспавнил все машины.");
BroadCast(COLOR_WHITE,string);
}
return 1;
}[/pwn]

Зареспавнить авто в котором вы сидите (Для админов)
[pwn]
//==============================================================================
if(strcmp(cmd, "/respawnthiscar", true) == 0 || strcmp(cmd, "/resthiscar", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] < 1338 )
{
SendClientMessage(playerid, COLOR_GRAD1, " Ты не авторизован для использования этой команды!");
return 1;
}
if(IsPlayerInAnyVehicle(playerid))
{
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, 256, " АдминКоманда: %s респавнил авто id %d.",sendername,GetPlayerVehicleID(playerid));
ABroadCast(COLOR_YELLOW,string,1);
SetVehicleToRespawn(GetPlayerVehicleID(playerid));
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid, COLOR_GREY, " Транспорт спавнился !");
}
}
return 1;
}[/pwn]

Добавлено (11.03.2010, 17:11)
---------------------------------------------
вот ещё /help
[pwn]
//----------------------------------[HELP]-----------------------------------------------
if(strcmp(cmd, "/help", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new nr [256];
nr = strtok(cmdtext, idx);
if(!strlen(nr))
{
SendClientMessage(playerid, COLOR_GRAD1,"*** ИНФО *** /help [название]");
SendClientMessage(playerid, COLOR_GRAD1,"*** ПОМОЩЬ *** игрок , ключи , общее ");
SendClientMessage(playerid, COLOR_GRAD1,"*** ПОМОЩЬ *** чат , банк , семьи , работа ");
SendClientMessage(playerid, COLOR_GRAD1,"*** ПОМОЩЬ *** телефон , прокат , бизнес , фракция");
SendClientMessage(playerid, COLOR_GRAD1,"*** ПОМОЩЬ *** лидер , рыбалка , rules, нелегальное");
SendClientMessage(playerid, COLOR_GREEN,"*** ================================================");
SendClientMessage(playerid, COLOR_LIGHTGREEN,"*** ПОМОЩЬ по командам *** копы , мерия.");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"игрок",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /rules /login /stats /fuel /eject /items /pass /покушать, /выпить /levelup");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /skill /time /id /drink /music /licensers /получить[получить паспорт] /страховка[показать страховку]");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /opengate /openbr /sl /licenses /fill /speedo /enter /exit /fightstyle");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /stopanim /пополнить /получить[паспорт получить] /taketest[сдать тест на права]");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"фракция",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Фракция *** /invite[приянть] /uninvite[выкинуть] /f[чат фракции]");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"семьи",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /families /adjust /giveturf /allowcreation /deletecreation ");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"ключи",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** КЛЮЧИ *** /give");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"общее",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** ОСТАЛЬНОЕ *** /clear /lotto /service /families /report /leaders /vopros");
SendClientMessage(playerid, COLOR_YELLOW2,"*** ОСТАЛЬНОЕ *** /cancel /accept /fillcar /admins ");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"чат",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** ЧАТ *** /o(oc) /s[крик] /c[шепот) /l(разговор] /ad[новости] /f[банда] /me[действие] /do[действие] /try[попытка действия] /ital[итал] /jab[япон] /vopros");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"банк",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** БАНК *** /взять[взять кредит] /погасить[погосить кредит]");
SendClientMessage(playerid, COLOR_YELLOW2,"*** БАНК *** /balance(ваш счет) /withdraw(снять) /deposit(положить) /wiretransfer(перевести)");
SendClientMessage(playerid, COLOR_YELLOW2,"*** ДЕНЬГИ *** /pay(передать деньги) /charity(пожертвовать деньги)");
SendClientMessage(playerid, COLOR_YELLOW2,"*** ПОКУПКИ *** /buy(купить в 24\7)");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"штрафы",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** БАНК *** /оплатить[оплатить штраф за автомобиль]");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"нелегальное",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /ограбить[ограбить банк] /tie[связать] /knockout[вырубить] /frisk[обшманать] /muteplayer[засунуть кляп]");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /buygun[купить оружие] /usedrugs[использовать наркоту] /contract[закачать человека] /продать[продать ворованые вещи]");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /ограбить[ограбить банк] /tie[связать] /knockout[вырубить] /brokecuff[взломать наручники]");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /кошелек[посмотреть деньги у жертвы] /забрать[забрать телефон/оружие] /mask[маска] /odet[одеть маску на жертву]");
//SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
else if(strcmp(nr,"копы",true) == 0)
{
if (IsACop(playerid))
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /auth[значёк] /opengate[откр.ворота] /opendoor[откр.дверь] /closedoor[закр.дверь] /duty[взять значёк] /su[розыск] /wanted[список преступников].");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /r[чат копов] /d[чат Гор.Структур] /cuff[наручники] /uncuff[снять наручники] /frisk[обыскать] /take[забрать] /undercover[маскировка].");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /arrest[арестовать] /tazer[электро-шок] /incar[затащить в машину] /swaton[разрешить сват] /swatoff[запретить сват] /swat[взять форму сват'а.].");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /gov[новости] /bk[помощь] /bkc[помощь] /rb[ограждение] /unrb[убрать ограждение] /unrball[убрать все ограждения] /tow[эвакуатор] /штраф[выписать штраф].");
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
}
else if(strcmp(nr,"мерия",true) == 0)
{
if(PlayerInfo[playerid][pMember] == 7|| PlayerInfo[playerid][pLeader] == 7)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /gov[новости] /kazna[взять деньги с Казны] /givekazna[положить денег в Казу] /govinvite[взять во фракцию] /govuninvite[выгнать с фракции] /setrole[назначит на место в мерии].");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /settax[установить налог] /givetax[дать зарплату Гос.Службам.].");
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
}
else if(strcmp(nr,"работа",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"=============================== РАБОТА Страховщика ==================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /выдать[выдать страховку]. ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно в полицейском участке. ");
/*SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Инкасатора ===================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /job ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно около банка. ");*/
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Адваката =====================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /free ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно в мерии. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Проституцией =================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /sex ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Работа обозначена на карте значком татуировки. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Продажа Наркотиков ===========================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /get drugs , /selldrugs ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Работа обозначена на карте значком татуировки. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Автовор'а ====================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /dropcar ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Работа обозначена на карте значком татуировки. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Телохранителем ===============================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /guard ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно в мерии. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Продажа Оружия ===============================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /sellgun , /materials ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Работа обозначена на карте значком татуировки. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Боксёром =====================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /fight , /boxstats, /setfs ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно в спорт-зале. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Таксиста/Водителя Автобуса ===================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /starteast /startwest /fare ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно около парка автобусов. (недалеко от пирса) ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Дальнобойщики ================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /droptruck ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно за городом около заправки на базе трейлеров. ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Доставки Пицы ================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /sellpizza ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно в пицирии (не далеко от грув стрит) ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Доставкой Газет ==============================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /papers , /bring , /delpaper ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Устроиться можно в мерии ");
SendClientMessage(playerid, COLOR_LIME,"*** ======================== РАБОТА Автомехаником =================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /repair , /refill , /duty , /установить ");
SendClientMessage(playerid, COLOR_YELLOW2,"*** Работа обозначена на карте гаичным ключём. ");
SendClientMessage(playerid, COLOR_LIME,"***========================= РАБОТА Взломщика Машин==================================================");
SendClientMessage(playerid, COLOR_YELLOW2,"*** /взломать. ");
//SendClientMessage(playerid, COLOR_YELLOW2,"*** Временно в разработке. ");
SendClientMessage(playerid, COLOR_LIME,"***================================================================================================");
return 1;
}
else if(strcmp(nr,"телефон",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_GRAD3,"*** Телефон *** /p(взять трубку) /h(положить трубку) /call(номер) /sms(номер) ");
SendClientMessage(playerid, COLOR_GRAD3,"*** Телефон *** /number(узнать номер) /скрытьномер ");
return 1;
}
else if(strcmp(nr,"прокат",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_GRAD3,"*** ПРОКАТ *** /rent /unrent(car/bike) /enter /exit /lock /unlock");
return 1;
}
else if(strcmp(nr,"бизнес",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_GRAD3,"*** БИЗНЕС *** /bizinfo /bizfee /bizname /prodprice /bizwithdraw");
SendClientMessage(playerid, COLOR_GRAD4,"*** БИЗНЕС *** /enter /exit /open /sellbiz /bizbank ");
return 1;
}
else if(strcmp(nr,"лидер",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_WHITE,"*** ЛИДЕРЫ *** /invite(принять) /uninvite(выкинуть) /giverank(дать ранг)");
return 1;
}
/*else if(strcmp(nr,"irc",true) == 0)
{
SendClientMessage(playerid, COLOR_WHITE,"*** I.R.C. *** (/irc join [channelnr] or /irc join [channelnr] [password]) (/irc leave)");
SendClientMessage(playerid, COLOR_WHITE,"*** I.R.C. *** (/irc Password [channelnr]) (/irc NeedPass [channelnr]) (/irc Lock [channelnr])");
SendClientMessage(playerid, COLOR_WHITE,"*** I.R.C. *** (/irc Admins) (/irc MOTD [motdtext]) (/irc status [channelnr]) (/i [text])");
return 1;
}*/
else if(strcmp(nr,"рыбалка",true) == 0)
{
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
SendClientMessage(playerid, COLOR_GRAD3,"*** РЫБАЛКА *** /fish (ловить рыбку) /fishes (список рыбок)");
SendClientMessage(playerid, COLOR_GRAD3,"*** РЫБАЛКА *** /throwback (отпустить последнюю рыбку) /throwbackall");
SendClientMessage(playerid, COLOR_GRAD3,"*** РЫБАЛКА *** /releasefish (отпустить рыбку)");
SendClientMessage(playerid, COLOR_LIME,"---------------------------------------------- ");
return 1;
}
/*else if(strcmp(nr,"cook",true) == 0)
{
SendClientMessage(playerid, COLOR_GRAD3,"*** ГОТОВКА *** /cook (доступные ф-ции) /cooked (список приготовленного)");
SendClientMessage(playerid, COLOR_GRAD3,"*** ГОТОВКА *** /eat (сьесть что-нибудь)");
return 1;
}*/
}
return 1;
}[/pwn]


Riddle RP - ██____________________] 13%
Drago_JekaДата: Четверг, 11.03.2010, 17:23 | Сообщение # 534
Группа: I'm V.I.P.
Сообщений: 754
Награды: 41
Город: Где-то там...
Замечания: 0%
Статус:
Quote (Jogo)
else if(strcmp(nr,"работа",true) == 0)

omg ... :D



mc_mr47Дата: Воскресенье, 14.03.2010, 09:07 | Сообщение # 535
Группа: Продвинутые
Сообщений: 357
Награды: 4
Город: Омск
Репутация: 0
Замечания: 100%
Статус:
Quote (Jogo)
/help

с винивуда стянул fun зачем?

Cornell_HaysonДата: Воскресенье, 14.03.2010, 09:09 | Сообщение # 536
Постоялец
Группа: I'm V.I.P.
Сообщений: 375
Награды: 22
Город: Киев
Замечания: 0%
Статус:
Он все Команды с Винивуда Стянул :D


mc_mr47Дата: Воскресенье, 14.03.2010, 09:29 | Сообщение # 537
Группа: Продвинутые
Сообщений: 357
Награды: 4
Город: Омск
Репутация: 0
Замечания: 100%
Статус:
Quote (Antony_jast)
Он все Команды с Винивуда Стянул :D

:D оттакэ панамэ павно ХД я просто не пойму для кого нужен /help винивуда fun

блин чё я не могу уйти в продвинутые,уже набрал постов скок нажда

ABATAPДата: Воскресенье, 14.03.2010, 10:19 | Сообщение # 538
Советчик
Группа: Продвинутые
Сообщений: 1007
Награды: 14
Город: Новосибирск
Репутация: 729
Замечания: 0%
Статус:
Quote (prorok6)
оттакэ панамэ павно ХД я просто не пойму для кого нужен /help винивуда блин чё я не могу уйти в продвинутые,уже набрал постов скок нажда

Quote (Jogo)
не мои команды, но мб комунить пригодятся

TiNaRДата: Суббота, 20.03.2010, 10:58 | Сообщение # 539
Новенький
Группа: Пользователи
Сообщений: 24
Награды: 0
Город: Тула
Репутация: -5
Замечания: 20%
Статус:
sevan, ты это хотел? лидеры где пишется лидер какой фракции, его ник, и номер телефона
[pwn] if (strcmp(cmd, "/leaders", true) == 0)
{
if(IsPlayerConnected(playerid))
{
SendClientMessage(playerid, COLOR_YELLOW, " Лидеры Онлайн:");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[playerid][pAdmin] < 0)
{
SendClientMessage(playerid, COLOR_GRAD2, "Невозможно осуществить (с вашими правами доступа)!");
return 1;
}
if(PlayerInfo[i][pLeader] > 0)
{
GetPlayerName(i, giveplayer, sizeof(giveplayer));
if(PlayerInfo[i][pLeader] == 1)
{
format(string, 256, " Номер: %d | SAPD: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 17)
{
format(string, 256, " Номер: %d | Vagos Gang: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 2)
{
format(string, 256, " Номер: %d | ФБР: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 3)
{
format(string, 256, " Номер: %d | Армия: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 4)
{
format(string, 256, " Номер: %d | МЧС: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 5)
{
format(string, 256, " Номер: %d | МАФИЯ ЛКН: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 6)
{
format(string, 256, " Номер: %d | ЯКУДЗА: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 7)
{
format(string, 256, " Номер: %d | Гос.Дума: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 8)
{
format(string, 256, " Номер: %d | Хитманы: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 9)
{
format(string, 256, " Номер: %d | Репортеры: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 10)
{
format(string, 256, " Номер: %d | Такси: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 11)
{
format(string, 256, " Номер: %d | Лицензёры: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 12)
{
format(string, 256, " Номер: %d | Russian_MaFiA: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 13)
{
format(string, 256, " Номер: %d | Rifas Gang: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 14)
{
format(string, 256, " Номер: %d | Groove Street: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 15)
{
format(string, 256, " Номер: %d | Ballas Gang: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 16)
{
format(string, 256, " Номер: %d | EL_Coronos: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 18)
{
format(string, 256, " Номер: %d | Байкеры: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 19)
{
format(string, 256, " Номер: %d | Racers: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 20)
{
format(string, 256, " Номер: %d | Mongrel Mob: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
else if(PlayerInfo[i][pLeader] == 21)
{
format(string, 256, " Номер: %d | Salieri: %s", PlayerInfo[i][pPnumber] , giveplayer);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
}
}
}
}
return 1;
}[/pwn]

xSLiMxДата: Вторник, 30.03.2010, 19:51 | Сообщение # 540
Мастер джэдай
Группа: I'm V.I.P.
Сообщений: 2163
Награды: 34
Город: Ростов - на - Дону
Репутация: 1429
Замечания: 80%
Статус:
Оч давно писал себе банкомат. Вроде работал.
Вверх:
[pwn]#define DIALOG 1000[/pwn]
К диалогам:
[pwn]
if(dialogid == DIALOG)
{
if(response)
{
if(listitem == 0)
{
new loginmsg[256+1];
format(loginmsg,256,"Введите сумму снятия.\n");
ShowPlayerDialog(playerid,9,DIALOG_STYLE_INPUT,"Банкомат",loginmsg,"Принять","Отмена");
}
if(listitem == 1)
{
new loginmsg[256+1];
format(loginmsg,256,"Введите сумму депозита.\n");
ShowPlayerDialog(playerid,8,DIALOG_STYLE_INPUT,"Банкомат",loginmsg,"Принять","Отмена");
}
if(listitem == 2)
{
format(string,sizeof(string),"На вашем счете: $%d.\n",PlayerInfo[playerid][pAccount]);
ShowPlayerDialog(playerid,10,DIALOG_STYLE_MSGBOX,"Банкомат",string,"Ok","Отмена");
}
}
}
//=========Узнаем балансеГгГГг
else if(dialogid == 10)
{
if(response)
{
}
else
{
}
}
//===============СНЯТЬ ДЕНЬГИ
new idx;
new tmp[256];
tmp = strtok(inputtext, idx);
new cashdeposit = strval(tmp);
if(dialogid == 8)
{
if(response)
{
if(!strlen(inputtext))
{
new loginmsg[256+1];
format(loginmsg,256,"Неправильная сумма!\nВведите сумму снятия.\nНа вашем счете: %d\n",PlayerInfo[playerid][pAccount]);
ShowPlayerDialog(playerid,8,DIALOG_STYLE_INPUT,"Банкомат",loginmsg,"Принять","Отмена");
return 1;
}
if (cashdeposit > GetPlayerMoneyNoCheat(playerid) || cashdeposit < 1)
{
new loginmsg[256+1];
format(loginmsg,256,"Неправильная сумма!\nВведите сумму снятия.\nНа вашем счете: %d\n",PlayerInfo[playerid][pAccount]);
ShowPlayerDialog(playerid,8,DIALOG_STYLE_INPUT,"Банкомат",loginmsg,"Принять","Отмена");
return 1;
}
GivePlayerMoneyNoCheat(playerid,-cashdeposit);
new curfunds = PlayerInfo[playerid][pAccount];
PlayerInfo[playerid][pAccount]=cashdeposit+PlayerInfo[playerid][pAccount];
SendClientMessage(playerid, COLOR_WHITE, "|___ BANK STATMENT ___|");
format(string, sizeof(string), " Old Balance: $%d", curfunds);
SendClientMessage(playerid, COLOR_GRAD2, string);
format(string, sizeof(string), " Deposit: $%d",cashdeposit);
SendClientMessage(playerid, COLOR_GRAD4, string);
SendClientMessage(playerid, COLOR_GRAD6, "|-----------------------------------------|");
format(string, sizeof(string), " New Balance: $%d", PlayerInfo[playerid][pAccount]);
SendClientMessage(playerid, COLOR_WHITE, string);
}
}
if(dialogid == 9)
{
if(response)
{
if(!strlen(inputtext))
{
new loginmsg[256+1];
format(loginmsg,256,"Неправильная сумма!\nВведите сумму депозита.\n",PlayerInfo[playerid][pAccount]);
ShowPlayerDialog(playerid,8,DIALOG_STYLE_INPUT,"Банкомат",loginmsg,"Принять","Отмена");
return 1;
}
if (cashdeposit > PlayerInfo[playerid][pAccount] || cashdeposit < 1)
{
new loginmsg[256+1];
format(loginmsg,256,"Неправильная сумма!\nВведите сумму депозита.\n",PlayerInfo[playerid][pAccount]);
ShowPlayerDialog(playerid,8,DIALOG_STYLE_INPUT,"Банкомат",loginmsg,"Принять","Отмена");
return 1;
}
GivePlayerMoneyNoCheat(playerid,cashdeposit);
PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]-cashdeposit;
SendClientMessage(playerid, COLOR_WHITE, "|___ BANK STATMENT ___|");
format(string, sizeof(string), " Deposit: $%d",cashdeposit);
SendClientMessage(playerid, COLOR_GRAD4, string);
SendClientMessage(playerid, COLOR_GRAD6, "|-----------------------------------------|");
format(string, sizeof(string), " New Balance: $%d", PlayerInfo[playerid][pAccount]);
SendClientMessage(playerid, COLOR_WHITE, string);
}
}
[/pwn]

К командам
[pwn]if(strcmp(cmd, "/atm", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(IsAtBankoms(playerid))
{
new listitems[] = "Снять деньги.\nПоложить деньги.\nУзнать баланс.";
ShowPlayerDialog(playerid,DIALOG,DIALOG_STYLE_LIST,"Банкомат",listitems,"Ok","Отмена");
}
}
return 1;
}[/pwn]


Внимание! Если иды 1000,8,9,10 - использованы - будут баги.!



Сообщение отредактировал xSLiMx - Вторник, 30.03.2010, 20:01
Поиск:





 


 


 
Хостинг от uCoz samp.at.ua