[FilterScript] Скрипт основы работы дальнобойщика или развозчика.PHP код:
static const -_-[][] = {"Суда падашол!", "Ок."};
[FilterScript] ЭМИ. Моя версия скрипта.
[Tutorial][Pawn] Решаем проблему со стрелками и кнопкой "Spawn".
[Tutorial] Адаптация Sublime Text 3 под Pawn.
[Tutorial][PHP] Регулярные выражения в PHP и с чем их "едят".
[Tutorial][PHP] Сжатие и кеширование. Часть 1.
[Other] Интересный пример рекурсии.
[Include] Использование возможностей PHP в PAWN.
[GameMode] Name: Go to FlyLife [samp.flylife.pw] | Version: Build 43:01/08/2015-19/11/2017
PS: Тут файл который лежит на GitHub удалить или поправить бы не мешало)
PHP код:
/samp-addon/blob/master/build/client/changelog.txt
Если не выходить за границу «объектно-ориентированных» методов, чтобы остаться в рамках «хорошего программирования и проектирования», то в итоге обязательно получается нечто, по большей части не имеющее смысла. (C) Bjarne Stroustrup
Debian 7transfer.cpp: In constructor 'amxTransfer::amxTransfer(bool, unsigned int, std::string, std::string, std::size_t, int)':
transfer.cpp:33:112: error: cannot call constructor 'boost::system::error_code::error_code' directly [-fpermissive]
transfer.cpp:33:112: error: for a function-style cast, remove the redundant '::error_code' [-fpermissive]
transfer.cpp:41:130: error: cannot call constructor 'boost::system::error_code::error_code' directly [-fpermissive]
transfer.cpp:41:130: error: for a function-style cast, remove the redundant '::error_code' [-fpermissive]
[GM] PnS:SF 1.7
[FS] Family System on Database
[FS] Pirate Ship with Mats :D
[INFO]
Skype: elijah-dd
ICQ: 452-639
замени конструктор на этот, либо компилируй без -fpermissivePHP код:
amxTransfer::amxTransfer(bool local, unsigned int clientid, std::string filename, std::string remote_filename, std::size_t remote_file_size, int remote_file_crc) : file_name(filename), remote_file_name(remote_filename), is_local(local)
{
gDebug->Log("Transfer constructor called");
file_size = NULL;
file_crc = NULL;
boost::system::error_code err_c;
if(is_local)
{
file.open(file_name.c_str(), (std::fstream::in | std::fstream::binary | std::fstream::ate));
boost::thread s(boost::bind(&amxTransfer::processSend, this, clientid, err_c, NULL));
}
else
{
file_size = remote_file_size;
file_crc = remote_file_crc;
file.open(file_name.c_str(), (std::fstream::out | std::fstream::binary));
boost::thread r(boost::bind(&amxTransfer::processRecv, this, clientid, filename.c_str(), err_c, NULL));
}
}
[1:03:15 | Изменены 1:03:25] SDraw: есть идеи блокнуть установщику сцампа доступ к системной папке?
[1:03:45 | Изменены 1:03:51] SDraw: а то эта падла файлы directx заменяет внаглую
[1:08:38] Vladislav Barabash: поставь файлы директа в ридонли
[1:09:14] Vladislav Barabash: chmod r-x d3*.dll
Когда уже будет обновление аддона?