Extension of amb29 - forgot to change the retarded pause menu
This commit is contained in:
parent
dd55716f15
commit
21ad8ba71b
|
@ -142,12 +142,20 @@ public actionMenu(id, key)
|
||||||
|
|
||||||
switch (status[0])
|
switch (status[0])
|
||||||
{
|
{
|
||||||
|
// "running"
|
||||||
case 'r': pause("ac", file)
|
case 'r': pause("ac", file)
|
||||||
|
|
||||||
|
// "debug"
|
||||||
|
case 'd': pause("ac", file)
|
||||||
|
|
||||||
|
// "paused"
|
||||||
case 'p':
|
case 'p':
|
||||||
{
|
{
|
||||||
g_Modified = 1
|
g_Modified = 1
|
||||||
unpause("ac", file)
|
unpause("ac", file)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "stopped"
|
||||||
case 's':
|
case 's':
|
||||||
{
|
{
|
||||||
client_print(id, print_chat, "%L", id, "CANT_UNPAUSE_PLUGIN", file);
|
client_print(id, print_chat, "%L", id, "CANT_UNPAUSE_PLUGIN", file);
|
||||||
|
@ -165,21 +173,35 @@ getStatus(id, code, &statusCode, lStatus[], lLen)
|
||||||
{
|
{
|
||||||
switch (code)
|
switch (code)
|
||||||
{
|
{
|
||||||
|
// "running"
|
||||||
case 'r':
|
case 'r':
|
||||||
{
|
{
|
||||||
statusCode = 'O'
|
statusCode = 'O'
|
||||||
format(lStatus, lLen, "%L", id, "ON")
|
format(lStatus, lLen, "%L", id, "ON")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "debug"
|
||||||
|
case 'd':
|
||||||
|
{
|
||||||
|
statusCode = 'O'
|
||||||
|
format(lStatus, lLen, "%L", id, "ON")
|
||||||
|
}
|
||||||
|
|
||||||
|
// "stopped"
|
||||||
case 's':
|
case 's':
|
||||||
{
|
{
|
||||||
statusCode = 'S'
|
statusCode = 'S'
|
||||||
format(lStatus, lLen, "%L", id, "STOPPED")
|
format(lStatus, lLen, "%L", id, "STOPPED")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "paused"
|
||||||
case 'p':
|
case 'p':
|
||||||
{
|
{
|
||||||
statusCode = 'O'
|
statusCode = 'O'
|
||||||
format(lStatus, lLen, "%L", id, "OFF")
|
format(lStatus, lLen, "%L", id, "OFF")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// "bad load"
|
||||||
case 'b':
|
case 'b':
|
||||||
{
|
{
|
||||||
statusCode = 'E'
|
statusCode = 'E'
|
||||||
|
@ -501,7 +523,8 @@ saveSettings(filename[])
|
||||||
{
|
{
|
||||||
get_plugin(a, file, 31, title, 31, status, 0, status, 0, status, 1)
|
get_plugin(a, file, 31, title, 31, status, 0, status, 0, status, 1)
|
||||||
|
|
||||||
if (status[0] == 's')
|
// "paused"
|
||||||
|
if (status[0] == 'p')
|
||||||
{
|
{
|
||||||
format(text, 255, "^"%s^" ;%s", title, file)
|
format(text, 255, "^"%s^" ;%s", title, file)
|
||||||
write_file(filename, text)
|
write_file(filename, text)
|
||||||
|
@ -521,7 +544,7 @@ loadSettings(filename[])
|
||||||
while (read_file(filename, pos++, name, 255, i))
|
while (read_file(filename, pos++, name, 255, i))
|
||||||
{
|
{
|
||||||
if (name[0] != ';' && parse(name, name, 31) && (i = findPluginByTitle(name, file, 31) != -1))
|
if (name[0] != ';' && parse(name, name, 31) && (i = findPluginByTitle(name, file, 31) != -1))
|
||||||
pause("dc", file)
|
pause("ac", file)
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1
|
return 1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user