• 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!

Add mount via database

wikidmj

New Member
Joined
Jun 11, 2015
Messages
12
Reaction score
1
How can a mount be added to a player's account in the easiest fashion possible?
By database or by script?

I can't find ANYWHERE how to add them via mysql.

Thanks to anyone who can help explain how this works.
 
Thanks for your response, I notice my server already had this script. How would I go about executing it. Does a god / admin account need to use it, or do I use it in the server console?
 
Yes its needed because of this lines:
Code:
if not player:getGroup():getAccess() then
        return true
    end
 
Note that GMs also can use those scripts, better to use this:
Code:
if(not player:getGroup():getAccess()) or player:getAccountType() < ACCOUNT_TYPE_GOD then
      return true
end
 
Back
Top