mirror of
https://github.com/ulfgebhardt/autoit_wowfishingbot.git
synced 2025-12-13 07:45:57 +00:00
14 lines
182 B
AutoIt
14 lines
182 B
AutoIt
#include <Array.au3>
|
|
|
|
Func _ArraySize( $aArray )
|
|
SetError( 0 )
|
|
|
|
$index = 0
|
|
|
|
Do
|
|
$pop = _ArrayPop( $aArray )
|
|
$index = $index + 1
|
|
Until @error = 1
|
|
|
|
Return $index - 1
|
|
EndFunc |