cleo

  • Автор темы Удалённый пользователь 140342
  • Дата начала
Статус
В этой теме нельзя размещать новые ответы.
У

Удалённый пользователь 140342

Гость
Автор темы
Есть штука которая б загружала и выгружала клео? Короче как в мунлоадере можно скачать любой скрипт и не выходя из игры жмёшь CTRL + R после чего скрипт подгружается.
 
У

Удалённый пользователь 140342

Гость
Автор темы
CLEO:
{$CLEO}
0000:
 
repeat
    wait 0
until Samp.Available()

0B34: samp register_client_command "unload" to_label @UnloadScript
0B34: samp register_client_command "load" to_label @LoadScript
0B34: samp register_client_command "rest" to_label @Restarted  
 
repeat
    wait 0  
        if 20@ == 1    
            then    
            if Samp.IsCommandTyped(0@) 
            then                          
                0ABA: end_custom_thread_named 0@
                0AD0: show_formatted_text_lowpriority "~g~[Successfully] File (%s) unloaded" time 2000 0@
            else
            print "~r~/unload [name.cs]" 2000  
            end
        20@ = 0
    end
        if 21@ == 1
            then
            if Samp.IsCommandTyped(1@)
            then
                0A92: create_custom_thread 1@
                0AD0: show_formatted_text_lowpriority "~g~[Successfully] File (%s) loaded" time 2000 1@
            else
            print "~r~/load [name.cs]" 2000
            end
        21@ = 0
    end
        if 23@ == 1
            then
            if Samp.IsCommandTyped(2@)
            then
               0ABA: end_custom_thread_named 2@
               0A92: create_custom_thread 2@
               0AD0: show_formatted_text_lowpriority "~g~[Successfully] File (%s) Restarted" time 2000 2@
            else
            print "~g~/rest [name.cs]" 2000
            end
        23@ = 0
    end    
until false 
    
:UnloadScript
20@ = 1   
Samp.CmdRet()

:LoadScript
21@ = 1  
Samp.CmdRet()

:Restarted
23@ = 1
Samp.CmdRet()
Спасибо, /load работает, уже просто отлично, а вот /unload к сожалению не работает.
 
Статус
В этой теме нельзя размещать новые ответы.