Search found 8 matches
- Sun Sep 22, 2013 10:54 am
- Forum: Garrysmod
- Topic: Stuck on Sending Client Info
- Replies: 0
- Views: 1245
Stuck on Sending Client Info
I am using Undefined's Pointshop ( http://facepunch.com/showthread.php?t=1286577 ) I am trying to add a automatic system to give players double points on a certain day. This code should indicate every other Wednesday for every other week. if (tonumber(os.date("%V")) % 2 == 1) and (tonumber...
- Tue Sep 17, 2013 5:45 pm
- Forum: Garrysmod
- Topic: How to add sv_tags to my trouble in terrorist town server
- Replies: 3
- Views: 1787
Re: How to add sv_tags to my trouble in terrorist town serve
Well now you're talking about two different things. Do you want chat tags or scoreboard. Or even both. Check out my server. Ask someone to type in chat and also press tab. 74.91.116.62:27015 One is a chat tag and the other is a scoreboard rank. These are two separate files. Chat tags - custom file g...
- Tue Sep 17, 2013 5:34 pm
- Forum: Garrysmod
- Topic: how to make colors
- Replies: 1
- Views: 969
Re: how to make colors
Can you explain more of what you want to do?
Do you want it so players have a tag like this?
[VIP] Saintsin: I'm with nobody.
[Admin] Saintsin: I'm with nobody.
Do you want it so players have a tag like this?
[VIP] Saintsin: I'm with nobody.
[Admin] Saintsin: I'm with nobody.
- Tue Jun 25, 2013 5:19 pm
- Forum: Garrysmod
- Topic: New TTT Hands Gone
- Replies: 1
- Views: 928
Re: New TTT Hands Gone
Hey my understanding of what happened was Garry released the update and it broke a few things. NFO needed to update a few things so that the CS:S models worked properly. All of the models work fine for my server except in spectator mode. There are not hands models. Badking said that he is fixing/fix...
- Sun Jun 23, 2013 10:25 am
- Forum: Garrysmod
- Topic: Changing Models
- Replies: 3
- Views: 1650
Re: Changing Models
Thanks for the response.
To fix the coloured models go to:
/garrysmod/cfg/server.cfg
add this line to it:
ttt_playercolor_mode 0
To fix the coloured models go to:
/garrysmod/cfg/server.cfg
add this line to it:
ttt_playercolor_mode 0
- Thu Jun 20, 2013 4:49 am
- Forum: Dedicated servers and Virtual Dedicated Servers
- Topic: How do I add plugins to my TTT Garry's Mod server, and chang
- Replies: 1
- Views: 857
Re: How do I add plugins to my TTT Garry's Mod server, and c
add jjt8521 on sream I will help
- Wed Jun 19, 2013 6:55 pm
- Forum: Garrysmod
- Topic: Changing Models
- Replies: 3
- Views: 1650
Changing Models
Currently I have a pointshop set up with donators models. When they buy a custom model and equip it. The model will change to the new one, but when the round starts it is reset. Any way to stop the model from resetting every round? Example: 15 seconds till round starts Player model = nanosuit Round ...
Re: Help!
Make sure ITEM.WeaponClass is the folder that contains the SWEP (shared.lua) Here is my pointshop galil ITEM.Name = 'Galil' ITEM.Price = 55 ITEM.Model = 'models/weapons/w_rif_galil.mdl' ITEM.WeaponClass = 'weapon_ttt_galil' ITEM.SingleUse = true function ITEM:OnBuy(ply) ply:Give(self.WeaponClass) pl...