Что нового

Petite Health Check- -v1.0- -fujizakuraworks- May 2026

Petite Health Check- -v1.0- -fujizakuraworks- May 2026

As users move through the "v1.0" system, they must balance nutrition and activity levels to keep their characters in peak condition, avoiding the risks of "skipping" checks. Technical Specifications

The v1.0 release introduces a specific system of "health checks" that players must perform. Unlike standard fitness apps, this software focuses on the specific needs of and the unique challenges associated with maintaining health in a compact frame. Petite Health Check- -v1.0- -FujizakuraWorks-

For those interested in real-world petite fitness and health, organizations like the UCSF Health and Johns Hopkins Medicine offer comprehensive checklists for physical exams and preventive screenings that apply to all body types. Height and Weight Chart - HealthCheck Systems As users move through the "v1

Interactive Health Simulation / Digital Wellness Game Why Regular "Health Checks" Matter For those interested in real-world petite fitness and

The game mirrors real-world preventive care. In clinical settings, regular screenings for body mass index (BMI), blood pressure, and metabolic health are essential for identifying risks early. By gamifying these concepts, Petite Health Check v1.0 encourages players to consider the importance of proactive health management.

Players engage in various mini-games that simulate routine health exams, such as measuring frame size through elbow breadth or checking basic vitals.

The software provides a framework for managing small, healthy habits—like 30-minute daily walks or specific dietary goals—tailored to virtual avatars.

Автор
T

Tuxzer92

Новичок
Сообщения
65
Репутация
0
Код:
#include <GUIConstantsEx.au3>
#include <ButtonConstants.au3>

Local $nCh1, $nCh2, $nCh3, $nCh4, $nCh5, $nCh6, $msg, $text, $FileSize
$TotalSize=0
$DownloadSize=3
$Free="9"
GUICreate("My GUI Checkbox") ; Создаёт окно в центре экрана
$Label=GUICtrlCreateLabel($text,10,50,100,50)
$Label2=GUICtrlCreateLabel($Free,50,50,100,50)
$nCh1 = GUICtrlCreateCheckbox("Checkbox 1", 10, 10, 120, 20)
$nCh2 = GUICtrlCreateCheckbox("Checkbox 2", 10, 90, 120, 20)
$nCh3 = GUICtrlCreateCheckbox("Checkbox 3", 10, 150, 120, 20)
GUISetState() ; показывает созданное окно

; Запускается цикл опроса GUI до тех пор пока окно не будет закрыто
While 1
    $msg = GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
   Switch $msg
	  Case $nCh1
		 Check($msg)
	  Case $nCh2
		 Check($msg)
	  Case $nCh3
		 Check($msg)
   EndSwitch
WEnd

Func Check($msg)
   If GUICtrlRead($msg) = $GUI_CHECKED Then
	  $TotalSize+=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
	  If $TotalSize >= $Free Then
		 MsgBox(16,"","ERROR")
	  EndIf
   EndIf
   If GUICtrlRead($msg) = $GUI_UNCHECKED Then
	   $TotalSize-=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
   EndIf
EndFunc

Решил так.
 
Верх