• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Help with lua/c++ GM,CM,GOD...

Status
Not open for further replies.

wlj

retierd
Joined
Jan 7, 2009
Messages
1,201
Reaction score
1
Well yesterday Limannen helped me to get the groups from 0.3 to 0.2. And it says Addon and Custom Flags but gm,god,cm still gets addon 266 i wanna god to have 266 gm 75 cm 302...

HELP
 
It's look type, not addon. Anyway...

Code:
function onLogin(cid)
	local access = getPlayerAccess(cid)
	local outfits = {
		[3] = 75,
		[4] = 266,
		[5] = 302
	}

	if (outfits[access]) then
		doSetCreatureOutfit(cid, outfits[access], -1)
	end

	return true
end
 
It's look type, not addon. Anyway...

Code:
function onLogin(cid)
	local access = getPlayerAccess(cid)
	local outfits = {
		[3] = 75,
		[4] = 266,
		[5] = 302
	}

	if (outfits[access]) then
		doSetCreatureOutfit(cid, outfits[access], -1)
	end

	return true
end



right me if im wrong group id 1+ 3+ the addons and i can add like
[3] = 75,
[4] = 266,
[5] = 302
[6] = 266,

also where i put script php?


EDITE: Now u have 3 rep bars ;)
 
Last edited:
Status
Not open for further replies.
Back
Top