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
If its possible... thanks
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