Garrett19212 Posted March 17, 2005 Posted March 17, 2005 (edited) Ok $var1 = "0" sleep(1000) $var1 = $var1 + 1 Im trying to make it so it adds 1 to the var Like 0+1=1 so the var will be 1 now. How would i do that? Than how can i use a var in a splash txt like SplashTextOn('',Session: $var1',300,50,1,1) Or how would i do that Edited March 17, 2005 by Garrett19212
MHz Posted March 17, 2005 Posted March 17, 2005 What help do you need? $var1 = "0" MsgBox(0, '', $var1) sleep(1000) $var1 = $var1 + 1 MsgBox(0, '', $var1)
Garrett19212 Posted March 17, 2005 Author Posted March 17, 2005 lol wow thx i had no clue that would work
Garrett19212 Posted March 17, 2005 Author Posted March 17, 2005 hmm how would i do it in a splash text though cuz i dont wang a msg box to pop up!
Arathalion Posted March 17, 2005 Posted March 17, 2005 hmm how would i do it in a splash text though cuz i dont wang a msg box to pop up!<{POST_SNAPBACK}>$var1 = "0" SplashTextOn('', $var1) sleep(1000) $var1 = $var1 + 1 SplashTextOn('', $var1)
Blue_Drache Posted March 17, 2005 Posted March 17, 2005 concat strings is...Splashtexton("" , "me " & $var & " you")Lar.<{POST_SNAPBACK}>ROFL pwnt. Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
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