Jump to content

Recommended Posts

Posted

Alright basicly what im doing is makeing a tournament registration for poker stars now what i need to do is each tournament is marked with a number so i made imput box this is how i need it $T = InputBox("Tourney number","what number")

winmove("Tournament" $T "lobby","",0,0) but i know that is the correct syntax so i would like to know the correct syntax thank you for you help and support

Posted

Alright basicly what im doing is makeing a tournament registration for poker stars now what i need to do is each tournament is marked with a number so i made imput box this is how i need it $T = InputBox("Tourney number","what number")

winmove("Tournament" $T "lobby","",0,0) but i know that is the correct syntax so i would like to know the correct syntax thank you for you help and support

Posted

umm i know im not suppose to post twice but its 3 in the morning im trying to get this done so pleas help

Alright basicly what im doing is makeing a tournament registration for poker stars now what i need to do is each tournament is marked with a number so i made imput box this is how i need it $T = InputBox("Tourney number","what number")

winmove("Tournament" $T "lobby","",0,0) but i know that is the correct syntax so i would like to know the correct syntax thank you for you help and support

Posted

No one well willingly help if you've post 3 topics on the same subject in less than 15mins. And you can't get out of it by saying you didn't know. If you don't get a reply in a 3hour period, look at your question. Does it make sense? Did you post code? What is your title? Is it "help" or is it "Function Errors"? If that doesn't seem right, then you may bump your post. Not make a new thread. You have been told, and warned.

Posted (edited)

I assumed you wanted a space after Tournament then T then a space then lobby

$T = InputBox("Tourney number","what number")
winmove("Tournament " & $T  & " lobby","",0,0)

Wow seriously dude post 1 topic, people will help you eventually. No need to post more then 1.

Edited by Thatsgreat2345
Posted (edited)

I'm guessing that what you want to know is how to concatenate strings and variables. Well the correct syntax would be:

WinMove("Tournament" & $T & "lobby","",0,0)

If there are no spaces at the end of Tournament or the begining of lobby, the result string would be like this (using 2 as an example number):

Tournament2lobby

So I'd add spaces like this:

WinMove("Tournament " & $T & " lobby","",0,0)

= Tournament 2 lobby

Edit:

Never mind. Just saw you posted it three times and already got an answer.

Edited by Nahuel

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
×
×
  • Create New...