Hey im running a perp server as u can guess from my last post. This problem is that my invisible plugin for assmod dosent work. how to fix?
Code:
[QUOTE]function Invis( user )
if (user:GetLevel() == ASS_LVL_SUPER_ADMIN || user:GetLevel() == ASS_LVL_SERVER_OWNER) then
user:SetColor(Color(0, 0, 0, 0));
user:SetRenderMode( RENDERMODE_TRANSALPHA );
user:Notify("You are now invisible.");
else
user:Notify("Nope.");
end
end
concommand.Add("invisme", Invis)
function UnInvis( user )
user:SetColor(Color(0, 0, 0, 0));
user:SetRenderMode( RENDERMODE_TRANSALPHA );
user:Notify("You are now visible.");
end
concommand.Add("visme", UnInvis)[/QUOTE]
PERP Does NOT work.
There is no stable, genuine release.
Also good luck finding support because we all hate it.
I don't know if thats the problem but try to change this
[lua]function UnInvis( user )
user:SetColor(Color(0, 0, 0, 0));
user:SetRenderMode( RENDERMODE_TRANSALPHA );
user:Notify("You are now visible.");[/lua]
into
[lua]function UnInvis( user )
user:SetColor(Color(255, 255, 255, 255));
user:SetRenderMode( RENDERMODE_NORMAL );
user:Notify("You are now visible.");[/lua]
The roblem is, i cant get invisible. When im using it, im just getting purple, thanks anyway Soliv
[editline]13th May 2013[/editline]
[QUOTE=Samg381;40626287]PERP Does NOT work.
There is no stable, genuine release.
Also good luck finding support because we all hate it.[/QUOTE]
Its the assmod i need to get fixed the addon for, my perp is working good, fixed most bugs.
This isn't the place for lua scripting help, [url]http://facepunch.com/showthread.php?t=1251673[/url]
And assmod is tied with perp when you use it on a perp because it has different plugins/Sections (PERP and different tabs), If you are coding something for assmod go to the modding section, Cause most of us don't like perp or assmod/Might not use it or be experienced with it
Please mark as solved.
Sorry, you need to Log In to post a reply to this thread.