kamani Posted November 19, 2010 Share Posted November 19, 2010 Hey all whats wrong in this script function test(source) local string1 = 0 local string2 = 0 if (guiCheckBoxGetSelected ( check1_1 ) == true) then string1++ end if (guiCheckBoxGetSelected ( check1_2 ) == true) then string1++ end if (guiCheckBoxGetSelected ( check1_3 ) == true) then string2++ else string1++ end if (guiCheckBoxGetSelected ( check1_4 ) == true) then string1++ end outputChatBox("Hey, number of string1 "..string1.." ! :)", source) end Link to comment
dzek (varez) Posted November 19, 2010 Share Posted November 19, 2010 I think LUA does not support var++ increasing.. Use var = var+1 instead Calling INTEGER variable as string will confuse you, soon or later. Use more "proper" name of your variable edit: Oh, and don't call variables "source".. Link to comment
kamani Posted November 19, 2010 Author Share Posted November 19, 2010 Okey, thanks =) Link to comment
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