Client.lua addCommandHandler ( \"shutdown\", function ( player, command ) if ( hasObjectPermissionTo ( player, \"function.shutdown\" ) ) then shutdown ( reason or \"\" ) bool outputChatBox ( \"[SHUTDOWN]: A szerver 5 perc múlva lefog állni\" [, element visibleTo = getRootElement(), int r = 231, int g = 217, int b = 176, bool colorCoded = false ] ) bool outputChatBox ( \"[SHUTDOWN]:\" reason [, element visibleTo = getRootElement(), int r = 231, int g = 217, int b = 176, bool colorCoded = false ] ) end end ) timeToRespawn = 500*60*10 --5perc minute = 4 second = 60 minusTime = setTimer(minusTimer, 500, shutdown) [/quote] és meta.lua <meta> <script src=\"client.lua\" type=\"client\" /> [/quote] és nem indul el mert error-t ír ki, mivel nem vagyok profi, 2 meg vissza kéne számolni pl 1 percenként hogy SHUTDOWN:4 perc van hátra SHUTDOWN:3 perc van hátra SHUTDOWN:2 perc van hátra SHUTDOWN:1 perc van hátra SHUTDOWN:10mp van hátra SHUTDOWN:9mp van hátra SHUTDOWN:8mp van hátra SHUTDOWN:7mp van hátra SHUTDOWN:6mp van hátra SHUTDOWN:5mp van hátra SHUTDOWN:4mp van hátra SHUTDOWN:3mp van hátra SHUTDOWN:2mp van hátra SHUTDOWN:1mp van hátra SHUTDOWN: LEÁLL A SZERVER
meta.lua <meta> <script src=\"client.lua\" type=\"client\" /> [/quote] és nem indul el mert error-t ír ki, mivel nem vagyok profi, 2 meg vissza kéne számolni pl 1 percenként hogy SHUTDOWN:4 perc van hátra SHUTDOWN:3 perc van hátra SHUTDOWN:2 perc van hátra SHUTDOWN:1 perc van hátra SHUTDOWN:10mp van hátra SHUTDOWN:9mp van hátra SHUTDOWN:8mp van hátra SHUTDOWN:7mp van hátra SHUTDOWN:6mp van hátra SHUTDOWN:5mp van hátra SHUTDOWN:4mp van hátra SHUTDOWN:3mp van hátra SHUTDOWN:2mp van hátra SHUTDOWN:1mp van hátra SHUTDOWN: LEÁLL A SZERVER
if ( hasObjectPermissionTo ( player, \"function.shutdown\" ) ) then shutdown ( reason or \"\" ) bool outputChatBox ( \"[SHUTDOWN]: A szerver 5 perc múlva lefog állni\" [, element visibleTo = getRootElement(), int r = 231, int g = 217, int b = 176, bool colorCoded = false ] ) bool outputChatBox ( \"[SHUTDOWN]:\" reason [, element visibleTo = getRootElement(), int r = 231, int g = 217, int b = 176, bool colorCoded = false ] ) endend ) [/quote] outputChatBox(\"[SHUTDOWN]: A szerver 5 perc múlva le fog állni\",231,217,176, false) outputChatBox ( \"[SHUTDOWN]:\" reason [, element visibleTo = getRootElement(), int r = 231, int g = 217, int b = 176, bool colorCoded = false ] ) [/quote] outputChatBox(\"[Shutdown]: \"..reason, 231,217,176, false) A többiben nem igazán tudok segíteni, bocsi..
outputChatBox ( \"[SHUTDOWN]:\" reason [, element visibleTo = getRootElement(), int r = 231, int g = 217, int b = 176, bool colorCoded = false ] ) [/quote] outputChatBox(\"[Shutdown]: \"..reason, 231,217,176, false) A többiben nem igazán tudok segíteni, bocsi..
addCommandHandler ( \"shutdown\", function ( player, command, reason ) if ( hasObjectPermissionTo ( player, \"function.shutdown\" ) ) thenlocal sec = 5setTimer(function() outputChatBox(\"[Shutdown]: A szerver le fog állni \"..sec..\" másodperc múlva!\", 231,217,176, false) sec=sec-1 if sec==0 then shutdown(reason or \"\") endend, 1000*sec, 0) endend )