Jump to content

Recommended Posts

Posted (edited)

Hey guy's

I never had problems with scripts before

the only one that i couldn't understand is the Msgbox

here is an example

$ash = msgbox(4, "Installing", "Do You Want To Install Software?!")

If $ash - 7 Then

MsgBox(0, "Exit", "OK. Bye!")

Exit

EndIf

MsgBox(0, "ok", "the software will be installed now!")

Exit

Unfortunately there is something wrong someware

and I'm too stupid to know what is it LOL

so please help me out if U can

thanks a lot

later~

Edited by kakashi
Posted

$ash = msgbox(4, "Installing", "Do You Want To Install Software?!")
If $ash = 7 Then
MsgBox(0, "Exit", "OK. Bye!")
Exit
EndIf
MsgBox(0, "ok", "the software will be installed now!")

Posted

Hey guy's

I never had problems with scripts before

the only one that i couldn't understand is the Msgbox

here is an example

Unfortunately there is something wrong someware

and I'm too stupid to know what is it LOL

so please help me out if U can

thanks a lot

later~

change If $ash - 7 to If $ash = 7, then it should work.

;-))

Stefan

Posted (edited)

change If $ash - 7 to If $ash = 7, then it should work.

;-))

Stefan

Otherwise may be If $ash - 6 Then ;then condition is true and the code work correctly Edited by Andreik

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
  • Recently Browsing   0 members

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