Jump to content

Help with my system


HuskLV

Recommended Posts

Hello.

I make bondage system, but script check bondage level and error 3 line.

Script there.

 function atkaribasCheck() 
    local atkariba = mysql:query_free( "SELECT atkaribaLVL FROM characters WHERE id = " .. getElementData( source, "dbid" ) ) 
    if (atkariba>10) then 
        outputChatBox("Jūs esiet atkarīgs no narkotikām, lai ārstētos Jums jālieto vēl vai jādodas uz slimnīcu!", source) 
    else 
        outputDebugString("INFO: Atkarības sistēma work!") 
    end 
end 

Link to comment

function atkaribasCheck() 
    local atkariba = mysql:query_free("SELECT `atkaribaLVL` FROM `characters` WHERE `id`='".. getElementData( thePlayer, "dbid" ).."'") 
    if (tonumber(atkariba>10)) then 
        outputChatBox("Jūs esiet atkarīgs no narkotikām, lai ārstētos Jums jālieto vēl vai jādodas uz slimnīcu!", thePlayer) 
    else 
        outputDebugString("INFO: Atkarības sistēma work!") 
    end 
end 

Viss ir pareizi savadīts.

Nomainīju if (tonumber(atkariba>10)) then un pārveidoju nedaudz to atkariba tāpat ir tas pats errors.

Link to comment
  
function atkaribasCheck() 
    local atkariba = mysql:query_free("SELECT `atkaribaLVL` FROM `characters` WHERE `id`='".. getElementData( thePlayer, "dbid" ).."'") 
    if (tonumber(atkariba) > 10) then 
        outputChatBox("Jūs esiet atkarīgs no narkotikām, lai ārstētos Jums jālieto vēl vai jādodas uz slimnīcu!", thePlayer) 
    else 
        outputDebugString("INFO: Atkarības sistēma work!") 
    end 
end 
  

Link to comment
  
function atkaribasCheck() 
    local atkariba = mysql:query_free("SELECT `atkaribaLVL` FROM `characters` WHERE `id`='".. getElementData( thePlayer, "dbid" ).."'") 
    if (tonumber(atkariba) > 10) then 
        outputChatBox("Jūs esiet atkarīgs no narkotikām, lai ārstētos Jums jālieto vēl vai jādodas uz slimnīcu!", thePlayer) 
    else 
        outputDebugString("INFO: Atkarības sistēma work!") 
    end 
end 
  

Not work.

Error in - local atkariba = mysql:query_free("SELECT `atkaribaLVL` FROM `characters` WHERE `id`='".. getElementData( thePlayer, "dbid" ).."'")

Link to comment

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