Jump to content

Number from $b to $c


malu05
 Share

Recommended Posts

What is the command i should use if i want to see if $a is a number between $b and $?.

Like;

If 1.25932 = 1(something), 2

I could always use;

if $A <= ($:whistle: And $A >= ($c) Then

but would be more easy with a plane command.

Edited by malu05

[center][u]WoW Machinima Tool[/u] (Tool for Machinima Artists) [/center]

Link to comment
Share on other sites

Hi,

I would agree, that a selfmade func should do the trick:

MsgBox(64, "Compare Numbers", NumberCheck(2, 3, 7))
MsgBox(64, "Compare Numbers", NumberCheck(5, 3, 7))
MsgBox(64, "Compare Numbers", NumberCheck(9, 3, 7))

Func NumberCheck($a, $b, $c)
    Select
        Case $a <= $b
            Return "too small"
        Case $a >= $b And $a <= $c
            Return "Between"
        Case $a >= $c
            Return "too big"
    EndSelect
EndFunc   ;==>NumberCheck

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

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