1. Gqqdd - 26 Марта, 2022 - 16:29:10 - перейти к сообщению
Как вывести значение переменых в messagebox ?
2. Zireael - 26 Марта, 2022 - 16:33:33 - перейти к сообщению
CODE:
int x = 10;
int y = 25;
messagebox(x);
messagebox(y);
messagebox("x = "+format(x)+", y ="+format(y));
int y = 25;
messagebox(x);
messagebox(y);
messagebox("x = "+format(x)+", y ="+format(y));
3. Gqqdd - 26 Марта, 2022 - 16:40:49 - перейти к сообщению
а в textout такой же формат вывода ?
4. Zireael - 26 Марта, 2022 - 16:46:44 - перейти к сообщению
CODE:
int x = 10;
int y = 25;
textout(0, 50, 0, format(x), 0);
textout(1, 50, 20, format(y), 0);
textout(2, 50, 40, "x = "+format(x)+", y ="+format(y), 0);
looptime(3000)sleep(10);
int y = 25;
textout(0, 50, 0, format(x), 0);
textout(1, 50, 20, format(y), 0);
textout(2, 50, 40, "x = "+format(x)+", y ="+format(y), 0);
looptime(3000)sleep(10);
5. Gqqdd - 27 Марта, 2022 - 04:35:16 - перейти к сообщению
Пытаюсь вывести в textout выбивает ошибку
PHP:
function Night_or_Day()//День или Ночь
{
int x, y;
while (findimage(1, #day[0][0], 0, #x, #y, 0, 0, w.width, w.height, w)<1);
{
textout(3, 100, 120,"Проверка день или ночь",1);
sleep(500);
}
int greenday = 1;
textout(3, 100, 120,"greenday ="+format(greenday)+"...", "Сейчас день",1);
sleep(2000);
}
function Night_or_Day()//День или Ночь
{
int x, y;
while (findimage(1, #day[0][0], 0, #x, #y, 0, 0, w.width, w.height, w)<1);
{
textout(3, 100, 120,"Проверка день или ночь",1);
sleep(500);
}
int greenday = 1;
textout(3, 100, 120,"greenday ="+format(greenday)+"...", "Сейчас день",1);
sleep(2000);
}
6. Zireael - 27 Марта, 2022 - 04:45:29 - перейти к сообщению
Цитата:
textout(3, 100, 120,"greenday ="+format(greenday)+"...", "Сейчас день",1);
textout принимает 5 параметров, у вас их 6.
CODE:
int greenday = 1;
textout(3, 100, 120,"greenday ="+format(greenday)+"..."+"Сейчас день",1);
sleep(2000);
textout(3, 100, 120,"greenday ="+format(greenday)+"..."+"Сейчас день",1);
sleep(2000);
Можно так:
CODE:
int greenday = 1;
string text = "greenday ="+format(greenday)+"..."+"Сейчас день";
textout(3, 100, 120, text, 1);
sleep(2000);
string text = "greenday ="+format(greenday)+"..."+"Сейчас день";
textout(3, 100, 120, text, 1);
sleep(2000);