Hallo Leute
Ich wollte fragen ob mir jemand 5 Sachen machen könnte
1. Das wenn man auf jemanden guckt das der RP Name und Job angezeigt wird
nicht wie Standard alles überm Kopf ist
2. den Taser von GMod.org Fixen kann
[ame]http://www.garrysmod.org/downloads/?a=view&id=48781[/ame]
(Der Bug ist das wenn man jemanden Tasert das man dann in der Wand irgendwie wieder spawnt)
3. Das Anti Propsurf Script von Weltensturm so umscripten
das wenn man mit der Gravity Gun draufschiesst das es auch Rot wird (No Collidet)
Lua Code:
local antipropsurf = CreateConVar("antipropsurf_enable", "1", {FCVAR_REPLICATED, FCVAR_ARCHIVE}) hook.Add("PhysgunPickup", "nds_antipropsurf", function(ply, ent) if !ent.JustPickedUp and antipropsurf:GetFloat() == 1 then ent.JustPickedUp = true ent.AntiPropSurf={ phys=ent:GetCollisionGroup(), color=Color(ent:GetColor()),}
ent:SetCollisionGroup(COLLISION_GROUP_WEAPON) ent:SetColor(255, 50, 50, 200)end
return true end) hook.Add("PhysgunDrop", "nds_antipropsurf_drop", function(ply, ent) if ent.JustPickedUp then ent:SetColor(ent.AntiPropSurf.color.r, ent.AntiPropSurf.color.g, ent.AntiPropSurf.color.b, ent.AntiPropSurf.color.a) ent:SetCollisionGroup(ent.AntiPropSurf.collision) ent.JustPickedUp = nilend
end)
4. Voice Radius das dich nur Leute im Umkreis hören
5. Das wenn man in der MOTD auf Accept drückt das dann kommt z.B Bill Gates Accepted Rules!
Wäre nett wenn mir jemand helfen könnte
bye euer bill