• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua MySQL calls Avesta 7.6

Peacy

Member
Joined
Mar 20, 2008
Messages
488
Reaction score
10
Location
The Netherlands
Hey folks,

I'm struggling with this for a while and can't manage to find any solutions.. hope one of you can help me.

So, I'm trying to make database calls in Lua with Avesta 7.6. But I can't find any database functions in Avesta

Already tried db.executeQuery(); but db is not defined.



Anybody an idea?



- Peacy
 
Code:
function onLogin(cid)
    getFirstItems(cid)
   
    mysqlQuery("SELECT id FROM players WHERE id=".. cid .." LIMIT 1")

    return 1

end
6xG2vfu.png


Am I doing something wrong here?
 
Back
Top