Orca Posted September 20, 2004 Posted September 20, 2004 how do you inject variables into a string parameter eg Func Splash($text) SplashTextOn ( "Level Progress", $text, 550, 22, 0, 0) EndFunc Splash("Putting element "+$element+" in slot "+$X+", "+$Y+"!") I AM ORCA!! A VERY POWERFUL WHALE!!!
Matt @ MPCS Posted September 20, 2004 Posted September 20, 2004 Try this: Func Splash($text) SplashTextOn ( "Level Progress", $text, 550, 22, 0, 0) EndFunc Splash("Putting element " & $element & " in slot " & $X & ", " & $Y & "!") I haven't tested the coe, but it should work. *** Matt @ MPCS
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now