local dxfont = dxCreateFont("myFont.ttf",9)
function render()
	if not localTurfID or not localTurfCol then return end
	local data = getElementData(localTurfCol,"TurfBilgi")
	local defans = data.defans
	local defans_oran = defans.durum and defans.def or data.saldiri.atc
	local barRenk = defans.durum and tocolor(255,0,0,150) or tocolor(0,255,0,150)
	dxDrawRectangle(x,y,pg,pu+30,tocolor(0,0,0,0),true,true) -- arkaplan
	local klanisim = data.klanisim
	dxDrawText(klanisim,x,y,x+pg,y-35+pu,tocolor(255,255,255,255),1,dxfont,"center","top",false,nil,true)
	dxDrawText("%"..defans_oran,x,y+0,x+pg,y+pu,tocolor(255,255,255,255),1,dxfont,"center","center",false,nil,true)
	dxDrawText("",x+5,y-100,x+pg,y+pu,tocolor(255,255,255,255),1,dxfont,"center","center",false,nil,true)
	callServerFunction("setPedWearingJetpack",localPlayer,false)
	setElementData(localPlayer, "superman:flying", false)
	setElementData(localPlayer, "invincible", false)
end