Search found 17 matches

by ThatGuyNex
Fri Mar 31, 2017 12:59 am
Forum: Dedicated servers and Virtual Dedicated Servers
Topic: NFO Server Help
Replies: 10
Views: 3578

Re: NFO Server Help

Port Forwarding in this respect is not a valid concept when you have a outward facing IP address as you do here, there is no separate, internal IP address for you to forward to. You can just skip that step in any tutorial you are following.
by ThatGuyNex
Wed Mar 02, 2016 5:00 pm
Forum: Dedicated servers and Virtual Dedicated Servers
Topic: CS:GO Crashing
Replies: 2
Views: 1282

Re: CS:GO Crashing

What are the errors exactly? Have you checked the SQL server logs for any errors from the same time?
by ThatGuyNex
Sun Jul 06, 2014 7:20 am
Forum: Garrysmod
Topic: Default Weps + Third Person (Deathrun)
Replies: 1
Views: 660

Re: Default Weps + Third Person (Deathrun)

For your first question, if you could post where you found the gamemode it would be easier to see how to change it as it would require looking at the code. As for number two, I am not aware of any addon that does that and I am not seeing any in my Google searches.
by ThatGuyNex
Fri Jan 24, 2014 9:08 pm
Forum: Garrysmod
Topic: How to set up a murder server?
Replies: 3
Views: 1319

Re: How to set up a murder server?

I was able to get the gamemode working correctly with these steps: 1. Create a collection on the workshop that includes this addon: http://steamcommunity.com/sharedfiles/filedetails/?id=187073946 You can follow this guide to set up the collection with your server: http://www.nfoservers.com/forums/vi...
by ThatGuyNex
Fri Oct 25, 2013 4:55 pm
Forum: Garrysmod
Topic: My server just crashes randomly
Replies: 7
Views: 1784

Re: My server just crashes randomly

That is a pretty general error, and it doesn't really point to anything specific. One very possible cause though is that your door data has gotten corrupted is some fashion. If it is any specific doors that are causing that error to show up you could try resetting them, and then manually setting the...
by ThatGuyNex
Thu Oct 17, 2013 5:49 pm
Forum: Garrysmod
Topic: point shop
Replies: 1
Views: 837

Re: point shop

This is actually fairly simple. You just need to create a new lua file in "garrysmod/lua/items/playermodels" with this content: ITEM.Name = 'Faith' ITEM.Price = 9999 ITEM.Model = 'models/player/something.mdl' function ITEM:OnEquip(ply, modifications) if not ply._OldModel then ply._OldModel...
by ThatGuyNex
Sun Sep 08, 2013 4:49 pm
Forum: Garrysmod
Topic: TTT music not working
Replies: 3
Views: 1129

Re: TTT music not working

Are the music files downloading to your clients? Also are they in the correct format?
by ThatGuyNex
Wed Aug 28, 2013 6:59 pm
Forum: Garrysmod
Topic: automated messages
Replies: 1
Views: 716

Re: automated messages

ULX can do this. They are referred to as "adverts" and can be found under the settings tab of the admin menu.
by ThatGuyNex
Wed Aug 28, 2013 12:34 pm
Forum: Garrysmod
Topic: Steam Workshop - Maps / Other cotent issue
Replies: 1
Views: 928

Re: Steam Workshop - Maps / Other cotent issue

With the latest patch, it is now required to create a resource file to force the client to download workshop add-ons. I've updated our guide on forcing downloads and you can take a look at it here:
http://www.nfoservers.com/forums/viewto ... 349#p41349
by ThatGuyNex
Thu Aug 08, 2013 1:57 am
Forum: Garrysmod
Topic: Need basic help, A little confused
Replies: 2
Views: 879

Re: Need basic help, A little confused

Make sure your starting gamemode is set to "terrortown" without the quotes. As for the server crashing it sounds like you tried to set the starting map to either a broken one or a non-existent one. Have you actually uploaded the map that you want to run to your maps directory using FTP? If...
by ThatGuyNex
Tue Aug 06, 2013 11:38 am
Forum: Minecraft
Topic: minecraft gameplay on
Replies: 0
Views: 1186

Re: minecraft gameplay on

There really isn't any one specific laptop I would recommend for this, but anything with 4 gigs of ram or higher and a decent dual core CPU should do just fine. What program you use to do the recording can also make a large difference. Personally I prefer Open Broadcaster Software to do my own recor...
by ThatGuyNex
Wed Jul 31, 2013 1:32 pm
Forum: Garrysmod
Topic: Maps aren't changing plus i need help on playing sounds
Replies: 5
Views: 1479

Re: Maps aren't changing plus i need help on playing sounds

You can set up the default game mode on the easy set up tab of your control panel. Just set the value to "terrortown" and it will start off in that mode. As far as adding MP3's to your server, are you talking about the end of round sounds? The addon for that can be found here: http://steam...
by ThatGuyNex
Fri Jun 07, 2013 7:06 pm
Forum: Garrysmod
Topic: Server Name Fix
Replies: 1
Views: 794

Server Name Fix

With the Steam Pipe update, some people have been experiencing problems with default server names being loaded. I suspect this is an error with the patch that involves mounted games, and how which .cfg files are loaded upon initialization. I have created a quick and dirty "hotfix" lua file...
by ThatGuyNex
Sun Jun 02, 2013 2:23 am
Forum: Garrysmod
Topic: Fast DL help - Models show as errors
Replies: 12
Views: 2550

Re: Fast DL help - Models show as errors

You're exactly right. Much like the vmt files have hard paths to where the vtf file is located, the .mdl files have the location of the texture files coded in as well. I'll hope that you got it working.
by ThatGuyNex
Tue May 28, 2013 12:57 pm
Forum: Garrysmod
Topic: init.lua and modifying Default Terrortown files
Replies: 13
Views: 3052

Re: init.lua and modifying Default Terrortown files

If you would be so kind as to post the file in question I can take a look. I have a feeling that your modified file is in fact the one being loaded though. There are two types of lua files with garrysmod, those that are being run on the server, and those that are being run on the client (and technic...