Results 1 to 5 of 5

Thread: super noob help

  1. #1
    Join Date
    Sep 2010
    Location
    Azeroth
    Posts
    395
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default super noob help

    Code:
    if (x<11 and y<16) then
    
    begin

    how can i get 2 unconditional statements crammed in that if then statement in order for it to work? i am have trouble ....

  2. #2
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Simba Code:
    if (x < 11) and (y < 16) then
    begin

    Try this, if it doesn't work, then idk how.

    Or maybe

    if (x < 11) then
    begin
    if (y < 16) then
    begin

  3. #3
    Join Date
    Sep 2010
    Location
    Azeroth
    Posts
    395
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    thank you sir

  4. #4
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    + rep!
    lol jk

    Seriously, it worked?

  5. #5
    Join Date
    Sep 2010
    Location
    Azeroth
    Posts
    395
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    i already rep'd + you, yes it worked by wrapping them in parentheses ...yeah so that's all basic sytax

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •