<?xml version="1.0" encoding="windows-1251"?>
<!-- generator="ExBB FeedCreator 1.0" -->
<rss version="2.0">
	<channel>
		<title>Последние сообщения на форуме Kibor Bot Autoclicker</title>
		<link>http://kibor-bot.com/forum-en</link>
		<description>Kibor Bot Autoclicker. Autoclickers and bots. Scripts and macros. Creating bots.</description>
		<generator>ExBB Full Mods 0.1.5 FeedCreator 1.1</generator>
		<image>
			<url>http://kibor-bot.com/forum-en/im/logo_ExBB.gif</url>
			<link>http://kibor-bot.com/forum-en</link>
			<title>Последние сообщения на форуме</title>
		</image>
		<lastBuildDate>Sun, 21 Mar 2021 10:47:19 -0500</lastBuildDate>
					<item>
				<title>Тема: Version 5.87 Creating your own dialog boxes using WinApi</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=125&amp;postid=1616341639#1616341639</link>
				<description><![CDATA[<b>В форуме: About Kibor</b><br />Автор: Kibor<br />----------<br />Description -<i>(для просмотра ссылки Вам необходимо авторизоваться)</i> <br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">#define WS_MINIMIZEBOX 131072<br />
#define WS_MAXIMIZEBOX 65536<br />
#define WS_VISIBLE 268435456<br />
#define WS_CAPTION 12582912<br />
#define WS_SYSMENU 524288<br />
#define WS_CHILD 1073741824<br />
<br />
#define COLOR_APPWORKSPACE 12<br />
<br />
#define WM_LBUTTONDOWN 513<br />
#define WM_COMMAND 273<br />
#define WM_CREATE 1<br />
#define WM_LBUTTONDOWN 513<br />
<br />
external(INT, &quot;RegisterClass&quot;, &quot;RegisterClassA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;CreateWindow&quot;, &quot;CreateWindowExA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;LoadCursor&quot;, &quot;LoadCursorA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;LoadCursor&quot;, &quot;LoadCursorA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;LoadIcon&quot;, &quot;LoadIconA&quot;, &quot;User32.dll&quot; );<br />
<br />
////////////////////<br />
int b1;<br />
<br />
int WinProc=address(&quot;WindowProc&quot;);<br />
char Class[8]={&#039;m&#039;, &#039;y&#039;, &#039;c&#039;, &#039;l&#039;, &#039;a&#039;, &#039;s&#039;, &#039;s&#039;, 0};<br />
int CLASS=address(#PWNDCLASS[0]);//Указатель на название класа<br />
<br />
int PWNDCLASS[10];//Структура WNDCLASS<br />
initialarray(#PWNDCLASS[0], 0);//Обнуляем структуру<br />
<br />
writeaddress(WinProc, address(#PWNDCLASS[1]));//Указываем адрес функции WindowProc<br />
writeaddress(COLOR_APPWORKSPACE, address(#PWNDCLASS[7]));//Указываем цвет диалога<br />
writeaddress(address(#Class[0]), address(#PWNDCLASS[9]));//Указываем указатель на название класа<br />
<br />
if (RegisterClass(CLASS)==0){messagebox(&quot;Не удалось зарегистрировать клас&quot;); goto er;}<br />
<br />
int Win=CreateWindow(0, address(#Class[0]), &quot;Основное окно&quot;,<br />
WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_VISIBLE | WS_CAPTION | WS_SYSMENU,<br />
10, 10, 500, 500, 0, 0, 0, 0);<br />
<br />
/////////////////////<br />
<br />
loop()sleep(10);<br />
<br />
er:;<br />
<br />
<br />
//Тут можно создавать контролы для окна, поскольку оно одно и мы можем указать родительским окном для контролов message.hwnd<br />
function getmessage(WM_CREATE)<br />
{<br />
b1=CreateWindow(0, &quot;BUTTON&quot;, &quot;Кнопка&quot;, WS_VISIBLE | WS_CHILD, 10, 10, 200, 30, message.hwnd, 0, 0, 0);<br />
}<br />
<br />
<br />
function getmessage(WM_LBUTTONDOWN)<br />
{<br />
if (message.hwnd==Win)//Если сообщение от окна<br />
{<br />
beep(1000, 100);<br />
}<br />
}<br />
<br />
function getmessage(WM_COMMAND)<br />
{<br />
if (message.lparam==b1)//Если кнопка<br />
{<br />
messagebox (&quot;Кнопка&quot;);<br />
}<br />
}</div></div><br />
<br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">#define WS_MINIMIZEBOX 131072<br />
#define WS_MAXIMIZEBOX 65536<br />
#define WS_VISIBLE 268435456<br />
#define WS_CAPTION 12582912<br />
#define WS_SYSMENU 524288<br />
#define WS_CHILD 1073741824<br />
<br />
#define COLOR_APPWORKSPACE 12<br />
<br />
#define WM_LBUTTONDOWN 513<br />
#define WM_COMMAND 273<br />
#define WM_CREATE 1<br />
#define WM_LBUTTONDOWN 513<br />
<br />
external(INT, &quot;RegisterClass&quot;, &quot;RegisterClassA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;CreateWindow&quot;, &quot;CreateWindowExA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;LoadCursor&quot;, &quot;LoadCursorA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;LoadCursor&quot;, &quot;LoadCursorA&quot;, &quot;User32.dll&quot; );<br />
external(INT, &quot;LoadIcon&quot;, &quot;LoadIconA&quot;, &quot;User32.dll&quot; );<br />
<br />
////////////////////<br />
<br />
int WinProc=address(&quot;WindowProc&quot;);<br />
char Class[8]={&#039;m&#039;, &#039;y&#039;, &#039;c&#039;, &#039;l&#039;, &#039;a&#039;, &#039;s&#039;, &#039;s&#039;, 0};<br />
int CLASS=address(#PWNDCLASS[0]);//Указатель на название класа<br />
<br />
int PWNDCLASS[10];//Структура WNDCLASS<br />
initialarray(#PWNDCLASS[0], 0);//Обнуляем структуру<br />
<br />
writeaddress(WinProc, address(#PWNDCLASS[1]));//Указываем адрес функции WindowProc<br />
writeaddress(COLOR_APPWORKSPACE, address(#PWNDCLASS[7]));//Указываем цвет диалога<br />
writeaddress(address(#Class[0]), address(#PWNDCLASS[9]));//Указываем указатель на название класа<br />
<br />
if (RegisterClass(CLASS)==0){messagebox(&quot;Не удалось зарегистрировать клас&quot;); goto er;}<br />
<br />
int Win=CreateWindow(0, address(#Class[0]), &quot;Первое окно&quot;,<br />
WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_VISIBLE | WS_CAPTION | WS_SYSMENU,<br />
10, 10, 500, 500, 0, 0, 0, 0);<br />
<br />
int Win_D=CreateWindow(0, address(#Class[0]), &quot;Дочерное окно в окне&quot;,<br />
WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_CHILD,<br />
10, 50, 300, 200, Win, 0, 0, 0);<br />
//Кнопку создаем посде создания окна и получения на него HWND, а не в сообщение WM_CREATE, так как в том сообщение окно еще не записало в Win = HWND<br />
int b1=CreateWindow(0, &quot;BUTTON&quot;, &quot;Кнопка в доч окне&quot;, WS_VISIBLE | WS_CHILD, 10, 10, 200, 30, Win_D, 0, 0, 0);<br />
<br />
int Win2=CreateWindow(0, address(#Class[0]), &quot;Второе окно&quot;,<br />
WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_VISIBLE | WS_CAPTION | WS_SYSMENU,<br />
515, 10, 500, 200, 0, 0, 0, 0);<br />
int b2=CreateWindow(0, &quot;BUTTON&quot;, &quot;Кнопка&quot;, WS_VISIBLE | WS_CHILD, 10, 10, 120, 30, Win2, 0, 0, 0);<br />
<br />
/////////////////////<br />
<br />
loop()sleep(10);<br />
<br />
er:;<br />
<br />
/*<br />
//Тут контролы не создаем, так как в переменные Win и Win2 HWND будут записаны только после отработки функций CreateWindow!<br />
function getmessage(WM_CREATE)<br />
{<br />
<br />
}<br />
*/<br />
<br />
function getmessage(WM_LBUTTONDOWN)<br />
{<br />
if (message.hwnd==Win2)//Если сообщение от второго окна<br />
{<br />
beep(1000, 100);<br />
}<br />
}<br />
<br />
function getmessage(WM_COMMAND)<br />
{<br />
if (message.lparam==b1)//Если кнопка в дочерном окне<br />
{<br />
messagebox (&quot;Кнопка в доч окне&quot;);<br />
}<br />
if (message.lparam==b2)//Если кнопка во втором окне<br />
{<br />
messagebox (&quot;Кнопка&quot;);<br />
}<br />
}</div></div>]]></description>
				<pubDate>Sun, 21 Mar 2021 10:47:19 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=125&amp;postid=1616341639#1616341639</guid>
			</item>			<item>
				<title>Тема: My Script Stops</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=2&amp;topic=12&amp;postid=1616156890#1616156890</link>
				<description><![CDATA[<b>В форуме: Issues and problem solving</b><br />Автор: Kibor<br />----------<br />If there is no transition from the block, the program will exit. She has nowhere to go.]]></description>
				<pubDate>Fri, 19 Mar 2021 07:28:10 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=2&amp;topic=12&amp;postid=1616156890#1616156890</guid>
			</item>			<item>
				<title>Тема: Browser automation with Kibor Python and Selenium</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=3&amp;topic=8&amp;postid=1596975760#1596975760</link>
				<description><![CDATA[<b>В форуме: Textbook Kibor</b><br />Автор: Kibor<br />----------<br />Explaining Browser Automation with Kibor, Python, and Selenium<br />
Using Python in Kibor.<br />
Browser automation with Selenium.<br />
Demonstration of the search in Google for the desired site for the necessary queries and the transition to it.<br />
<br />
Working with the browser is linked to page elements. Doesn't depend on appearance, window resolution and so on. Works in the background. Maybe without the browser itself.<br />
<br />
<iframe width="560" height="315" src="https://www.youtube.com/embed/6RG1vrLMF6o" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><br />
<br />
<br />
<p><img src="http://b.radikal.ru/b30/2008/ab/51dd020c000b.png" border="0"></p><br />
<br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';"><br />
string find=&quot;Распознать текст OCR&quot;;//Request<br />
string path_webdriver=pathfolder()+&quot;python\webdriver\geckodriver.exe&quot;; // Way to webdriver. C:\Program Files (x86)\Kibor\python\webdriver\geckodriver.exe<br />
string path_browser=&quot;C:\Program Files (x86)\Mozilla Firefox\Firefox.exe&quot;; // Путь к браузеру Мозила<br />
<br />
if (runpython()==0){messagebox (&quot;Failed to start Python&quot;); goto er;}//Run the interpreter Python<br />
<br />
//Training<br />
import();<br />
<br />
//Launching the browser and switching to https://www.google.com<br />
start_browser();<br />
<br />
//We find on the Google search page a field for entering the search and enter the query there<br />
find_google();<br />
<br />
//Search on the page of the opened search for a link that leads to kibor-bot.com and click on it<br />
F: if (find_site(&quot;kibor-bot.com&quot;)==0)//If this page does not link to kibor-bot.com<br />
{// You need to go to the next search page<br />
if (find_site(&quot;Next&quot;) == 0) goto exits; //If there is no Next button on this page, exit the program -  MUST BE NAME OF BUTTON NEXT IN SEARCH GUGLA<br />
pause (5000); //If you clicked the Next pause button for 5 seconds and repeat the search for a link to kibor-bot.com<br />
goto F;<br />
}<br />
<br />
<br />
<br />
exits:;<br />
closepython();//Finishing work with the interpreter<br />
er:;<br />
<br />
function find_site(string find_link)//Search on the page of the opened search for a link that leads to the specified link<br />
{<br />
string rez;<br />
sendpython(&quot;web.find_element_by_partial_link_text(^&#039;&quot;+find_link+&quot;^&#039;).click()&quot;);//We send Python a command to find the link containing kibor-bot.com and click on it<br />
sendpython(&quot;print(^&#039;yes^&#039;)&quot;);//Immediately without waiting for the end of the first Send command print(&#039;yes&#039;)<br />
<br />
  loop()//A closed loop in which we are waiting for an answer<br />
  {<br />
  rez=getpython();//Trying to read the answer If the link was not found, then in addition to yes, the answer will contain a description of the error.<br />
    if (rez!=&quot;ERROR_READ_PYTHON&quot;) // If Python answered us something ..<br />
    {<br />
    //messagebox (rez+);//See what comes when they found a link and when they did not find it<br />
    if (rez==&quot;yes&quot;)return 1;//If the answer only contains the word yes, then we found a link and there is no description of the error.<br />
    return 0;//Otherwise, the answer is not only the word yes. So we didnt find the link<br />
    }<br />
  }<br />
}<br />
<br />
function find_google()//We find on the Google search page a field for entering the search and enter the value of the find variable there<br />
{<br />
// First, we initialize the variable finds in Pythen with our variable find with a synchronous function<br />
sendgetpython(&quot;finds=^&#039;&quot;+find+&quot;^&#039;&quot;); // finds=find<br />
__python<br />
element = web.find_element_by_name(&#039;q&#039;)<br />
element.send_keys(finds)<br />
time.sleep(1);<br />
element.send_keys(Keys.ENTER)<br />
time.sleep(3);<br />
print(&#039;yes&#039;)<br />
__end_python<br />
while (getpython()!=&quot;yes&quot;)sleep(100);// We are waiting for the answer &quot;yes&quot; in the loop. It will be when the Python script runs<br />
}<br />
<br />
function start_browser()//Launching the browser<br />
{<br />
//First, we initialize the variables in Pythen with our synchronous functions.<br />
sendgetpython(&quot;p_web=^&#039;&quot;+path_webdriver+&quot;^&#039;&quot;);// p_web=path_webdriver<br />
sendgetpython(&quot;p_br=^&#039;&quot;+path_browser+&quot;^&#039;&quot;); // p_br=path_browser<br />
__python<br />
web = webdriver.Firefox(executable_path=p_web, firefox_binary=p_br) # Тут мы используе переменные p_web и p_br<br />
web.get(&#039;https://www.google.com&#039;)<br />
time.sleep(1);<br />
print(&#039;yes&#039;)<br />
__end_python<br />
while (getpython()!=&quot;yes&quot;)sleep(100);// We are waiting for the answer &quot;yes&quot; in the loop. It will be when the Python script runs<br />
}<br />
<br />
<br />
function import()//Training<br />
{<br />
__python<br />
import time<br />
from selenium import webdriver<br />
from selenium.webdriver.common.keys import Keys<br />
print(&#039;yes&#039;)<br />
__end_python<br />
while (getpython()!=&quot;yes&quot;)sleep(100);// We are waiting for the answer &quot;yes&quot; in the loop. It will be when the Python script runs<br />
}<br />
</div></div>]]></description>
				<pubDate>Sun, 09 Aug 2020 07:22:40 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=3&amp;topic=8&amp;postid=1596975760#1596975760</guid>
			</item>			<item>
				<title>Тема: Automatic search and verification of a working proxy on the network.</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=3&amp;topic=7&amp;postid=1594153772#1594153772</link>
				<description><![CDATA[<b>В форуме: Textbook Kibor</b><br />Автор: Kibor<br />----------<br />A simple script that parses a site with a list of free proxies makes an array of them and checks them for performance.<br />
It allows you to easily automatically find a working free proxy without going to any sites manually and without checking the proxy list by hand.<br />
<br />
If a working proxy is found, it issues the page<i>(для просмотра ссылки Вам необходимо авторизоваться)</i> to which the script goes through this proxy and issues an IP and port for further use of the free proxy for its intended purpose.<br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">int pos_size_edit0[1][4];<br />
string text_edit0[1];<br />
<br />
pos_size_edit0[0][0]=10; pos_size_edit0[0][1]=9; pos_size_edit0[0][2]=221; pos_size_edit0[0][3]=20;<br />
text_edit0[0]=&quot;Proxy parsing...&quot;;<br />
<br />
createdialog(0, EDIT, #pos_size_edit0[0][0], #text_edit0[0]);<br />
showdialog(0, &quot;Proxy Search&quot;, 200, 200, 250, 70, 1, 1);<br />
//////////<br />
<br />
<br />
<br />
find_proxi();<br />
<br />
<br />
<br />
function find_proxi()<br />
{<br />
int pade=1;<br />
string T;<br />
S:;<br />
if (sendgetweb(#T, &quot;Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0&quot;, &quot;GET&quot;, &quot;http:/^/foxtools.ru&quot;, &quot;Proxy?page=&quot;+format(pade)))<br />
{<br />
text_edit0[0]=&quot;Proxy parsing...&quot;;<br />
//messagebox (&quot;Proxy?page=&quot;+format(pade));<br />
/*<br />
if (fopen (&quot;c:\5.txt&quot;, &quot;w&quot;)!=0)<br />
{//если открылся<br />
fwrite(T);<br />
fclose();//закрываем файл<br />
}<br />
start(&quot;c:\5.txt&quot;);<br />
*/<br />
<br />
string P[100];<br />
string R=&quot;(?&lt;=input type=^&quot;checkbox^&quot; class=^&quot;ch^&quot; value=^&quot;)[\d]+(\.)[\d]+(\.)[\d]+(\.)[\d]+(:)[\d]+(?=^&quot; onclick=^&quot;SelectProxy\(this\)^&quot;)&quot;;<br />
int k=regexsearch(100, #P[0], T, R);<br />
if (k==0)<br />
{<br />
messagebox (&quot;No proxy&quot;);<br />
return;<br />
}<br />
for (int n=0; n&lt;k; n++)<br />
{<br />
//messagebox (P[n]);<br />
text_edit0[0]=P[n];<br />
<br />
if (sendgetweb(P[n], #T, &quot;&quot;, &quot;GET&quot;, &quot;https:/^/kibor-bot.com&quot;, &quot;forum&quot;))<br />
{<br />
if (T!=&quot;&quot;)<br />
{<br />
//messagebox (IP[n]+&quot;:&quot;+PORT[n]);<br />
messagebox (P[n]+&quot; - &quot;+T);<br />
if (fopen (&quot;c:\5.txt&quot;, &quot;w&quot;)!=0)<br />
{//если открылся<br />
fwrite(&quot;Working proxy &quot;+P[n]+&quot;^r^n&quot;+T);<br />
fclose();//закрываем файл<br />
}<br />
start(&quot;c:\5.txt&quot;);<br />
return;<br />
}<br />
}<br />
<br />
}<br />
}<br />
pade++;<br />
goto S;<br />
}</div></div>]]></description>
				<pubDate>Tue, 07 Jul 2020 15:29:32 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=3&amp;topic=7&amp;postid=1594153772#1594153772</guid>
			</item>			<item>
				<title>Тема: Version 3.22 The recording of actions with the mouse and keyboard.</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=24&amp;postid=1590720629#1590720629</link>
				<description><![CDATA[<b>В форуме: About Kibor</b><br />Автор: mactib<br />----------<br />thank you!thank you!thank you! This helps!]]></description>
				<pubDate>Thu, 28 May 2020 21:50:29 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=24&amp;postid=1590720629#1590720629</guid>
			</item>			<item>
				<title>Тема: Version 5.59 Adding Comments to the Visual Editor and Generated Code Blocks</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=124&amp;postid=1566044397#1566044397</link>
				<description><![CDATA[<b>В форуме: About Kibor</b><br />Автор: Kibor<br />----------<br />Now you can add your comments to blocks in the Visual Editor.<br />
To do this, the corresponding field appeared in the block properties at the bottom.<br />
Comments added in this way will be visible on the screen when the daw is turned on - Show comments<br />
Also, these comments are written in the generated code in accordance with the code to which this block belongs.]]></description>
				<pubDate>Sat, 17 Aug 2019 07:19:57 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=124&amp;postid=1566044397#1566044397</guid>
			</item>			<item>
				<title>Тема: Version 5.58 Initialization of data created by arrays.</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=123&amp;postid=1564249168#1564249168</link>
				<description><![CDATA[<b>В форуме: About Kibor</b><br />Автор: Kibor<br />----------<br /><span style="color: darkred;">initialarray </span>allows you to fill an array with the same data.<br />
An example is zeroing an array.<br />
<br />
Example:<br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">int a[900];<br />
initialarray(#a[0], 125);</div></div><br />
<br />
The first parameter is a pointer to an array, the second is the data that fills the array.<br />
<span style="color: red;">It is allowed to specify the beginning of the array only 0 index, that is, to fill it from the beginning.</span><br />
<br />
An example of filling a two-dimensional array. The rest is similar.<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">int a[900][20];<br />
initialarray(#a[0][0], 125);</div></div><br />
<br />
For char it is allowed to specify both a fill character in &#039;A&#039; and a numeric code.<br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">char a[900];<br />
initialarray(#a[0], &#039;A&#039;);</div></div><br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">char a[900];<br />
initialarray(#a[0], 65);</div></div><br />
<br />
Filling string<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">string a[900];<br />
initialarray(#a[0], &quot;Бла бла&quot;);</div></div><br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">string a[900];<br />
initialarray(#a[0], &quot;&quot;);</div></div>]]></description>
				<pubDate>Sat, 27 Jul 2019 12:39:28 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=123&amp;postid=1564249168#1564249168</guid>
			</item>			<item>
				<title>Тема: Version 5.57 cmd command line</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=122&amp;postid=1559724372#1559724372</link>
				<description><![CDATA[<b>В форуме: About Kibor</b><br />Автор: Kibor<br />----------<br />system - The function performs the specified command through the system command.<br />
The function executes the specified system command through the parameter. In fact, the function does not execute the command itself; it calls the command processor to execute the commands. After the command is executed, the command processor returns control to the program, returning an integer value, the interpretation of which depends on the system.<br />
<br />
<div style="margin-left: 20px;"><b>CODE:</b><div style="width: 98%;background-color: #FAFCFE; border: 1px solid #000; padding: 4px;color: #00008B;font: 15px 'Courier New';">system(&quot;start %SystemRoot%\System32\calc.exe&quot;);</div></div>]]></description>
				<pubDate>Wed, 05 Jun 2019 03:46:12 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=122&amp;postid=1559724372#1559724372</guid>
			</item>			<item>
				<title>Тема: Version 5.54 Script Debugging. Logging work in real time. Output a line of code when an error occurs in the script.</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=121&amp;postid=1557160804#1557160804</link>
				<description><![CDATA[<b>В форуме: About Kibor</b><br />Автор: Kibor<br />----------<br />A jackdaw appeared in Kibor <span style="color: darkred;"> Debugging </span><br />
If this option is enabled at the moment, an error message will be displayed in which instruction will display a line of code in which there was an error.<br />
<br />
<img src="http://c.radikal.ru/c40/1905/01/89b147bfdec0.png"> <br />
<br />
Opportunities:<br />
Logging work in real time and viewing the log when the program is launched.<br />
Logging variable values while the script is running and writing to the log.<br />
Definition of a line of code at the collapse of Kibor.<br />
Set pauses between lines of code.<br />
<br />
<br />
When you turn on the jackdaw, Cybor should download the Debugger itself.<br />
If this does not happen, you need to download Kibor from<i>(для просмотра ссылки Вам необходимо авторизоваться)</i> <br />
In order to remove the load on the processor, you can uncheck the Log in real time. After that, you can click the Show log button at any time and it will be displayed.]]></description>
				<pubDate>Mon, 06 May 2019 11:40:04 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=1&amp;topic=121&amp;postid=1557160804#1557160804</guid>
			</item>			<item>
				<title>Тема: Download link</title>
				<link>http://kibor-bot.com/forum-en/topic.php?forum=2&amp;topic=11&amp;postid=1553198784#1553198784</link>
				<description><![CDATA[<b>В форуме: Issues and problem solving</b><br />Автор: TooFat<br />----------<br />Hello,<br />
<br />
I wanted to start with kibor but when I click on the download page it redirect me to this one (http://kibor-bot.com/kibor_set.rar) but I get a 404 Not found error.<br />
Where can I get the software?<br />
<br />
Thanks]]></description>
				<pubDate>Thu, 21 Mar 2019 15:06:24 -0500</pubDate>
				<guid>http://kibor-bot.com/forum-en/topic.php?forum=2&amp;topic=11&amp;postid=1553198784#1553198784</guid>
			</item>
	</channel>
</rss>