Jump to content

Sarrum

Scripting Moderators
  • Posts

    1,039
  • Joined

  • Days Won

    11

Everything posted by Sarrum

  1. В чем проблема гражданин? Вы врач, чтоб ставить диагноз? А если по теме, то нужно создать на старте каких-нибудь мопедов бесплатных.
  2. 4:52 DJ Kuba & NE!TAN Feat. Nicco – Jump (Mandee Remix) 11.31 MB (325 kbps)
  3. race_server.lua, line 365-368, example: g_RaceStartCountdown:addClientHook(3, 'playSound', 'audio/3.mp3') g_RaceStartCountdown:addClientHook(2, 'playSound', 'audio/2.mp3') g_RaceStartCountdown:addClientHook(1, 'playSound', 'audio/1.mp3') g_RaceStartCountdown:addClientHook(0, 'playSound', 'audio/0.mp3') 'audio/X.mp3' - filepath to the sound file.
  4. и кстать вот это где вообще я такого не нашёл у меня в меню?у меня версия 1.3
  5. https://github.com/mabako/mta-paradise
  6. http://mta.dzek.eu/vehicle/ ?
  7. Нет защиты от того, что твои наработки не уйдут куда-нибудь.
  8. http://www.convertffs.com/ ?
  9. Settings -> Multiplayer -> Use customized GTA:SA files, поставить галочку.
  10. Возможно заменяются файлы в папке "data"? Тогда нужно отключить проверку файлов. https://wiki.multitheftauto.com/wiki/Ser ... lient_file https://wiki.multitheftauto.com/wiki/Ant ... ide#Client
  11. Что сделали то? Достаточно установить глобальный мод КР и клиент МТА, потом подключиться к спец. серверу.
  12. Больше не Open Sourсe? Быстро Вы сдались...
  13. Хватит даблпостить! Есть кнопка "EDIT".
  14. Что "UP" то? В одиночной игре проверить нельзя?
  15. Sarrum

    Scoreboard

    1) \race\race_server.lua, line 807, remove: exports.scoreboard:addScoreboardColumn('race rank') exports.scoreboard:addScoreboardColumn('checkpoint') 2) Use search.
  16. function centerWindow ( center_window ) local screenW, screenH = guiGetScreenSize ( ) local windowW, windowH = guiGetSize ( center_window, false ) local x, y = ( screenW-windowW )/2, ( screenH-windowH )/2 guiSetPosition ( center_window, x, y, false ) end HInv_Window = guiCreateWindow ( 354, 252, 362, 272, "Haushaltsinventar", false ) guiWindowSetSizable ( HInv_Window, false ) HInv_LBL_Welcome = guiCreateLabel ( 34, 25, 305, 35, "Hallo. Das ist dein Haushaltsinventar.\nVon hier aus kannst du M?bel in dein Haus platzieren.", false, HInv_Window ) guiSetFont ( HInv_LBL_Welcome, "default-bold-small" ) HInv_Grid = guiCreateGridList ( 38, 69, 290, 157, false, HInv_Window ) guiGridListSetSelectionMode ( HInv_Grid, 2 ) guiSetVisible ( HInv_Window, true ) hinvName = guiGridListAddColumn ( HInv_Grid, "Name", 2 ) HInv_BTN_Platzieren = guiCreateButton ( 90, 231, 186, 22, "Platzieren", false, HInv_Window ) centerWindow ( HInv_Window ) addEventHandler ( "onClientGUIClick", HInv_BTN_Platzieren, function ( ) guiSetVisible ( HInv_Window, false ) textITT ( ) end, false ) function textITT ( ) outputChatBox ( "TEXT" ) end
×
×
  • Create New...