Jump to content

Array / Variable Help


Recommended Posts

Func Load()
    Local $Count
;General Settings
    $ReplyFile = Ini("Settings", "ReplyFile")
    
;Delay Settings
    $RandDel = Ini("Delays", "RandDelay")
    $SleepDel = Ini("Delays", "SleepDelay")
    
;Blacklist Settings
    $Count = Ini("Blacklist", "Count")
    ReDim $Keyword[$Count]
EndFunc

So I want $Keyword to be an array, and I previously declared all those variables globally.

I want the amount of entries or w/e on the $keyword array equal to the value of $Count

$Count is a number, any ideas how I should go upon this?

Link to comment
Share on other sites

@igotandrew

??

Func Load()
    Local $Count
    Local $keyboard[1001];Limit of array = 1000
;General Settings
    $ReplyFile = Ini("Settings", "ReplyFile")
    
;Delay Settings
    $RandDel = Ini("Delays", "RandDelay")
    $SleepDel = Ini("Delays", "SleepDelay")
    
;Blacklist Settings
    $Count = Ini("Blacklist", "Count")
    ReDim $Keyword[$Count]
EndFunc

Cheers,

FireFox

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...