Is there any way to use the vip skin on users selected by usgn?
I need this to complete one of my servers.
Beforehand thank you very much.
Scripts
I do not find a hook for this.
I do not find a hook for this.
1

cs2d_is_a_Gem: He has a point, there's no actual way to implement custom skins other than with images.
cs2d_is_a_Gem has written
Rainoth has writtenAdmins = {admin usgn}
addhook("join","checkplayer")
function checkplayer(id)
for _, usgn in ipairs(Admins) do
if player(id,"usgn")==usgn then
skin=image("gfx/admin.png",1,0,200+id)
admin.png
end
end
end
yourImageTable = {}
Admins = {admin usgn}
addhook("join","checkplayer")
function checkplayer(id)
for _, usgn in ipairs(Admins) do
if player(id,"usgn")==usgn then
yourImageTable[id]=image("gfx/admin.png",1,0,200+id)
end
end
end
1
