i have problem when i made .exe file of my script and upload it on virustotal.com
it give me multiple viruses and i scaned on my computer with avira it say its clean
it show only for 32 bit
[Only registered and activated users can see links. Click Here To Register...]
and here is my code
it give me multiple viruses and i scaned on my computer with avira it say its clean
it show only for 32 bit
[Only registered and activated users can see links. Click Here To Register...]
and here is my code
Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=D:\Igre\Justacarch\Archlord.ico
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Compile_Both=y
#AutoIt3Wrapper_UseX64=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.8.1
Author: Arctic
Script Function:
Changing window mode on/off.
#ce ----------------------------------------------------------------------------
; Script Start
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#region ### START Koda GUI section ###
$GUI = GUICreate("UI change", 203, 76, 252, 316)
$Checkbox1 = GUICtrlCreateCheckbox("Window mode", 16, 12, 89, 17)
$saveBtn = GUICtrlCreateButton("Save", 112, 8, 75, 25)
$selectBtn = GUICtrlCreateButton("Select Justac folder", 16, 40, 171, 25)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
Global $file = "COption.ini"
Global $path
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $selectBtn
$path = FileSelectFolder("Select Justac folder", "")
If Not FileExists($path & "\ini\" & $file) Then
MsgBox(48, "", "Itīs not a Archlord folder")
EndIf
Case $saveBtn
If GUICtrlRead($Checkbox1) == $GUI_CHECKED Then
IniWrite($path & "\ini\" & $file, "Patch_Option", "Windowed", "1")
MsgBox(64, "", "Window mode on", 5)
Else
IniWrite($path & "\ini\" & $file, "Patch_Option", "Windowed", "0")
MsgBox(64, "", "Full screen mode on", 5)
EndIf
EndSwitch
WEnd