Jump to content

Newb Question ?


AlmarM
 Share

Recommended Posts

How to count like calculater ?

I just need × - + nothing more...

I tryed Number() but I dont know that one :)

Someone can help me ?

-AlmarM-

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

How to count like calculater ?

I just need × - + nothing more...

I tryed Number() but I dont know that one :)

Someone can help me ?

-AlmarM-

Not sure if you are using SciTe or just a text editor but this should give you one way to do it.

$Total = (4-3)*(4+2)
Msgbox(0, "The total is:", $Total)oÝ÷ ØGb´ay-+"³Z·*.ÁêÞiû^®Ê&zØb   ¨­ébëaÆ®¶­sbb33c¶ÒçVÖ&W"Ó2³
Edited by schilbiz
Link to comment
Share on other sites

I mean I want a function that can COUNT like, 1+1 = ?

Only I need:

$UserThingie = InputBox()

$CountThingie = <Command to Count>($UserThingie & * "8"

MsgBox(0, "Awnser", "The awnser: " * $CountThingie)

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

Ah I found it :)

Its:

$Input = InputBox("Number", "What number needs to be multiplied by 8?")
$Count = $Input * 8
MsgBox(0, "Awnser", "The Awnser: " & $Count)

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

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