Search found 12 matches
- Tue Mar 10, 2015 6:03 pm
- Forum: General
- Topic: [Suggestion] Donation note in email
- Replies: 2
- Views: 1176
Re: [Suggestion] Donation note in email
I'm not sure how suggestion threads fare on this forum. It's been a while and I thought I'd bump this to see if this feature would be useful to anyone else, or if NFO staff have any considerations on it.
- Sat Feb 21, 2015 5:20 pm
- Forum: General
- Topic: [Suggestion] Donation note in email
- Replies: 2
- Views: 1176
[Suggestion] Donation note in email
I'd like to suggest adding the note text that can be included in donations to the email notice that's sent to the server owners. The email already shows the amount donated as well as the email it comes from, but not the note, which requires logging into and navigating through the NFO control panel t...
- Mon Oct 13, 2014 8:16 pm
- Forum: General
- Topic: NFO Donation IPN
- Replies: 1
- Views: 999
NFO Donation IPN
I'm curious if there are any plans for implementing an IPN in NFO's account donation system. If not, I'd like to offer this as a suggestion. This kind of feature would be greatly useful for managing and keeping track of donations in a more customized and automated way. The current donation system al...
- Sat Jul 12, 2014 2:39 pm
- Forum: Garrysmod
- Topic: Glowing entities
- Replies: 0
- Views: 1393
Glowing entities
In this recent bugfix update to Garry's Mod , a new feature/bug was introduced. Every entity you hover over has a glowing outline/halo effect around it. This is quite an annoyance on my TTT server, and there doesn't seem to be any easy way to disable or configure how it works. If you want to disable...
- Sat Jul 12, 2014 2:07 pm
- Forum: Garrysmod
- Topic: Player names broken
- Replies: 2
- Views: 1080
Re: Player names broken
This issue was addressed in the recent bugfix update to Garry's Mod:
http://www.garrysmod.com/2014/07/11/14-07-11/
"Fixed non-ASCII characters being removed from player names"
http://www.garrysmod.com/2014/07/11/14-07-11/
"Fixed non-ASCII characters being removed from player names"
- Tue Jul 08, 2014 11:11 am
- Forum: Garrysmod
- Topic: Player names broken
- Replies: 2
- Views: 1080
Player names broken
I've run into an issue with this recent Garry's Mod server update. I'd like to post about it to see if anyone else has encountered it as well. A player with an accented character in their username joined my server, and their name was cut off right before that letter. I have tested this with other ac...
- Wed Dec 04, 2013 8:01 pm
- Forum: General
- Topic: Source RCon - Getting chat with PHP
- Replies: 11
- Views: 12935
Re: Source RCon - Getting chat with PHP
Those are just part of the protocol and signal that it's a log entry. Similar characters are used in sending rcon commands, client-server communications, and so on. That's sort of what I had imagined. For anyone interested in evidence of this working, here's a screenshot of a Server Chat page: http...
- Wed Dec 04, 2013 9:07 am
- Forum: General
- Topic: Source RCon - Getting chat with PHP
- Replies: 11
- Views: 12935
Re: Source RCon - Getting chat with PHP
Facepunch seems to be having some trouble displaying the code in my post there, so I'll paste it here for convenience. This is the code to create and bind to a UDP socket to listen for incoming data from a Source server: <?php // IP:Port to send the logs to (web server) $host="xxx.xxx.xxx.xxx&q...
- Tue Dec 03, 2013 11:17 am
- Forum: General
- Topic: Source RCon - Getting chat with PHP
- Replies: 11
- Views: 12935
Re: Source RCon - Getting chat with PHP
I figured out how to get this working, so I thought I'd make an update post if anyone else here happens to be looking for the same thing in the future. I made a thread on the Facepunch forum, and posted my findings as well as the final PHP code: Thread: Receive GMod Server log with PHP I have this f...
- Fri Nov 29, 2013 3:33 pm
- Forum: General
- Topic: Source RCon - Getting chat with PHP
- Replies: 11
- Views: 12935
Re: Source RCon - Getting chat with PHP
Gotcha.
Thanks Edge.
Thanks Edge.
- Thu Nov 28, 2013 12:58 pm
- Forum: General
- Topic: Source RCon - Getting chat with PHP
- Replies: 11
- Views: 12935
Re: Source RCon - Getting chat with PHP
So far, I've found that I need to add an IP:Port for the log to be sent to with the "logaddress_add" rcon command, and then to listen to that with a UDP connection to get the information. And finally, process it to get usable data and isolate the new log entries to display on-screen.
- Wed Nov 27, 2013 4:16 pm
- Forum: General
- Topic: Source RCon - Getting chat with PHP
- Replies: 11
- Views: 12935
Source RCon - Getting chat with PHP
Hi, I'm writing my own RCon application in PHP to send commands to my Garry's Mod server. I would ordinarily use the RCon provided by NFOServers on the Server Control panel, but having this feature on my own website makes matters a lot easier. I am already able to send RCon commands to the server an...