The Wiki for Tale 4 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Difference between revisions of "User:Cegaiel/Macros/Timer/Code"

From A Tale in the Desert
Jump to navigationJump to search
 
(7 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
;Hit Ctrl+R if you want to reload script to input a new amount of seconds.
 
;Hit Ctrl+R if you want to reload script to input a new amount of seconds.
  
 +
;Date: 5/29/2010
 +
;Last Update: 12/26/2010
 +
;Author: Cegaiel
  
  
Line 13: Line 16:
  
 
Gui, Add, Text,, Timer Mode:
 
Gui, Add, Text,, Timer Mode:
Gui, Add, DropDownList, vmode Choose1, Teppy|Real
+
Gui, Add, DropDownList, vmode Choose1, Real|Teppy
 
Gui, Add, Button, gSubmit, Submit
 
Gui, Add, Button, gSubmit, Submit
 
Gui, Show
 
Gui, Show
Line 23: Line 26:
 
Gui, Destroy
 
Gui, Destroy
  
Minutes := Mins * 60
+
break = 0
Seconds := Minutes + Seconds
+
counter = 0
 +
Total := Seconds + (Mins * 60)
 +
if (mode == "Teppy")
 +
Total := Total * 1.1
  
 +
oMins := Mins
 +
oSeconds := Seconds
 +
 +
Mins := Floor(Total/60)
 +
Seconds := Floor(Total - (Mins *60))
 +
 +
minutes_eta := Mins
 +
seconds_eta := Seconds
  
  
 
Gui, +AlwaysOnTop +ToolWindow
 
Gui, +AlwaysOnTop +ToolWindow
 
Gui, Font, normal
 
Gui, Font, normal
Gui, Add, Text, vLocationText, Press Numpad Plus (+) key to START Timer`n`nTimer Set: %seconds% (%mode%) seconds`n
+
Gui, Add, Text, vLocationText, Press Numpad Plus (+) key to START Timer`n`nCurrent Timer: %Mins%m %seconds%s`n`nTimer Set: %oMins%m %oseconds%s (%mode% Time)`n`n
 
Gui, Show
 
Gui, Show
  
 
;WinActivate, eGenesis Client
 
;WinActivate, eGenesis Client
 +
 +
  
 
KeyWait, NumpadAdd, D
 
KeyWait, NumpadAdd, D
  
 +
#Persistent
 +
SetTimer, CheckNumPadMinus, 100
  
Timer:
 
counter := seconds * 10
 
  
if (mode == "Teppy")
 
counter := counter * 1.1
 
  
 +
Timer:
 +
counter ++
 
loop
 
loop
 
{
 
{
GetKeyState, state, NumpadSub
+
if break = 1
if state = D
 
 
{
 
{
counter := counter/10
+
break := 0
 
break
 
break
 
}
 
}
if counter <= 0  
+
 
 +
GuiControl, Text, LocationText, Press Numpad Minus (--) to STOP Timer`n`nCurrent Timer: %minutes_eta%m %seconds_eta%s`n`nTimer Set: %oMins%m %oseconds%s (%mode% Time)`nTimer Started: %counter% times
 +
 
 +
sleep 1000
 +
 +
if (seconds_eta = 0)
 
{
 
{
SoundPlay *64,1
+
seconds_eta := 60
 +
minutes_eta --
 +
}
 +
 +
if (minutes_eta < 0)
 +
minutes_eta := 0
 +
 
 +
 
 +
seconds_eta --
 +
 +
 
 +
if (minutes_eta = 0) and (seconds_eta = 0)
 
break
 
break
}
 
  
counter--
+
 
Display := counter/10
 
SetFormat, float, 0.1
 
GuiControl, Text, LocationText, Press Numpad Minus (--) to STOP Timer`n`nTimer Set: %seconds% (%mode%) seconds`n%display% seconds remaining...
 
sleep 100
 
 
}
 
}
  
  
+
;occurs after the timer loop is broke
GuiControl, Text, LocationText, Press Numpad Plus (+) key to START Timer`n`nTimer Set: %seconds% (%mode%) seconds`n
+
 
 +
 
 +
GuiControl, Text, LocationText, Press Numpad Plus (+) key to START Timer`n`nCurrent Timer: %minutes_eta%m %seconds_eta%s`n`nTimer Set: %oMins%m %oseconds%s (%mode% Time)`nTimer Started: %counter% times`nPress Ctrl+R to set new time/counter
 +
 
 +
 
 +
;reset counter time back to original
 +
minutes_eta := Mins
 +
seconds_eta := seconds
 +
 
 +
SoundPlay *64,1
  
 
   
 
   
 
KeyWait, NumpadAdd, D
 
KeyWait, NumpadAdd, D
  
;counter := seconds * 1.1 * 10
 
 
Gosub, Timer
 
Gosub, Timer
 +
 +
 +
 +
CheckNumPadMinus:
 +
 +
GetKeyState, state, NumpadSub
 +
if state = D
 +
break = 1
 +
return
 +
 +
  
 
^r::reload
 
^r::reload
 
</pre>
 
</pre>

Latest revision as of 02:12, 27 December 2010

;No hotkeys to start script. Upon loading script, it will immediately ask Seconds and Timing Mode.
;It will remember the seconds everytime you start / stop(reset) timer.
;Hit Ctrl+R if you want to reload script to input a new amount of seconds.

;Date: 5/29/2010
;Last Update: 12/26/2010
;Author: Cegaiel


	Gui, Add, Text,, Minutes:
	Gui, Add, Edit, vMins wp number, 0

	Gui, Add, Text,, Seconds:
	Gui, Add, Edit, vseconds wp number, 0

	Gui, Add, Text,, Timer Mode:
	Gui, Add, DropDownList, vmode Choose1, Real|Teppy
	Gui, Add, Button, gSubmit, Submit
	Gui, Show
	return


	Submit:
	Gui, Submit
	Gui, Destroy

	break = 0
	counter = 0
	Total := Seconds + (Mins * 60)
	if (mode == "Teppy")
	Total := Total * 1.1

	oMins := Mins
	oSeconds := Seconds

	Mins := Floor(Total/60)
	Seconds := Floor(Total - (Mins *60))

	minutes_eta := Mins
	seconds_eta := Seconds


	Gui, +AlwaysOnTop +ToolWindow
	Gui, Font, normal
	Gui, Add, Text, vLocationText, Press Numpad Plus (+) key to START Timer`n`nCurrent Timer: %Mins%m %seconds%s`n`nTimer Set: %oMins%m %oseconds%s (%mode% Time)`n`n
	Gui, Show

	;WinActivate, eGenesis Client



	KeyWait, NumpadAdd, D

	#Persistent 
	SetTimer, CheckNumPadMinus, 100



	Timer:
	counter ++
	loop
	{
		if break = 1
		{
		break := 0
		break
		}

	GuiControl, Text, LocationText, Press Numpad Minus (--) to STOP Timer`n`nCurrent Timer: %minutes_eta%m %seconds_eta%s`n`nTimer Set: %oMins%m %oseconds%s (%mode% Time)`nTimer Started: %counter% times

	sleep 1000
		
		if (seconds_eta = 0)
		{
		seconds_eta := 60
		minutes_eta --
		}
		
		if (minutes_eta < 0)
		minutes_eta := 0


		seconds_eta --
	

		if (minutes_eta = 0) and (seconds_eta = 0)
		break


	}


;occurs after the timer loop is broke 


	GuiControl, Text, LocationText, Press Numpad Plus (+) key to START Timer`n`nCurrent Timer: %minutes_eta%m %seconds_eta%s`n`nTimer Set: %oMins%m %oseconds%s (%mode% Time)`nTimer Started: %counter% times`nPress Ctrl+R to set new time/counter


	;reset counter time back to original
	minutes_eta := Mins
	seconds_eta := seconds

		SoundPlay *64,1

 
	KeyWait, NumpadAdd, D

	Gosub, Timer



	CheckNumPadMinus:

		GetKeyState, state, NumpadSub
		if state = D
		break = 1
	return



^r::reload