Jump to content

[Help] with strings


kamani

Recommended Posts

Posted

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 
  

Posted

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"..

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...