ok i have bean working on making a irc bot that will display the top ten best players in the game
so i added a new colum names user lv to the user table
then i lernd the command i need to query the sql with to +1 to the table
UPDATE `users` SET user_lv = user_lv + 1 WHERE `username`='USERNAME'
now the only thing i have left to do is the script inside the game client
now from reading the chat commands in the rmxos script
def command_sql_script(script)
self.send("ASQ#{script}")
end
this is the command to queary somthing to the sql but i cant figure out how i need to put it in
could some 1 help me or tell me if im going down the right path
or have i lost my way