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

enter door if u got xx frags

ib0w

teamfiveporject
Joined
Apr 3, 2009
Messages
91
Reaction score
4
Location
Sweden/Ronneby
Hey, could anyone help me make a script for a door, u need xx frags to pass the door.
it's like the exp door but u need frags instead of levels.

Mooa
 
I dont know the many OT functions but something like this:

Lua:
function getSkull() -- fix this one 
local fetchSkulls = db.getResult("SELECT skull FROM players") -- fix this
	local skull = tonumber(fetchSkulls["skull"])
if skull >=1 and fetchSkulls then
return false
elseif fetchSkulls then
-- put door script here
	end
  end

just scrapped, you have to do the rest if you want it to work.

Dont forget to free the result!
 
Last edited:
Back
Top