Jump to content

need help to restart my script and do it so it send differnt text every time.


rakarna
 Share

Recommended Posts

hi i need some help i want my scribt to restart and that i know how to do but the thing i dont know what to do is to do it so every time it starts over it will send different text messege.

for exampel

first restart it will send hi1

restart two it will send hi2

restart three it will send hi3

please help me and if you need me to explane more just say it ^^

Link to comment
Share on other sites

@rakarna

Maybe...

If Not FileExists('run.txt') then FileWrite('run.txt', 1)
$run = FileRead('run.txt')
FileDelete('run.txt')
FileWrite('run.txt', $run + 1)

If $run = 1 Then
    MsgBox(64, 'AutoIt', 'First run !')
ElseIf $run = 2 Then
    MsgBox(64, 'AutoIt', 'Second run !')
EndIf ;etc...

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...