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

Change Group ID

StormRusher

New Member
Joined
Dec 23, 2009
Messages
138
Reaction score
0
Well I need a talkaction what changes the group id of a offline player

If its possible... thanks
 
Code:
function onSay(cid, words, param, channel)
	local p = string.explode(param, ",")
	db.executeQuery("UPDATE `players` SET `group_id` = ".. p[2] .." WHERE `name` = '".. p[1] .."';")
	return true
end

:peace:
 
Back
Top