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

AAC Annoying message from someone who purchased items and is not logged in

abdala ragab

Excellent OT User
Joined
Aug 18, 2018
Messages
752
Solutions
20
Reaction score
580
Location
gamelaots.online
How do I remove this message from my engine
Looks like someone bought items from the site and is not logged in I want to cancel this or even how do I find out the name of the man
LUA:
>>>>PLAYERS SAVED<<<<
>> Shopsystem, added 0 items. Still waiting with 3 items. Done in: 0.01s.
>> Shopsystem, added 0 items. Still waiting with 3 items. Done in: 0.01s.
>> Shopsystem, added 0 items. Still waiting with 3 items. Done in: 0.01s.
 
Do I have to delete all of this?
Explain what I should delete so as not to spoil anything
LUA:
    local message = ">> Shopsystem, added " .. addedItems .. " items. Still waiting with " .. waitingItems .. " items."

    if(displayExecutionTime) then
        local done, str = os.time() - started, ""
        if(os.mtime) then
            done = os.mtime() - started
            if(done < 100) then
                str = "0.0" .. done
            elseif(done < 1000) then
                str = "0." .. done
            else
                str = doSecondsFormat(done)
                if(str:len() == 0) then str = "0.0" end
            end
        end

        message = message .. " Done in: " .. str .. "s."
    end

    print(message)
    return true
end
 
Back
Top