Search found 15 matches

by redonkuless
Wed Feb 15, 2012 11:37 pm
Forum: Programming Discussion
Topic: quake3 browser plugin
Replies: 5
Views: 5459

Re: quake3 browser plugin

very nice, keep me updated on your status, seems like a way cool project
by redonkuless
Tue Feb 07, 2012 1:52 am
Forum: Programming Discussion
Topic: quake3 browser plugin
Replies: 5
Views: 5459

Re: quake3 browser plugin

So can you give a layout of how it works? Do you configure the plugin to connect to a linux ioquake server , then when the browser hits the site and your browser loads the plugin it connects to your server?
by redonkuless
Thu Feb 02, 2012 3:52 pm
Forum: Programming Discussion
Topic: Question For the Community
Replies: 4
Views: 3128

Re: Question For the Community

Anyone feel like making a mysql + amxmod for quake3? ;)
by redonkuless
Thu Feb 02, 2012 3:48 pm
Forum: Programming Discussion
Topic: [^misantropia^] little insite if you have some time.
Replies: 4
Views: 3552

Re: [^misantropia^] little insite if you have some time.

this would be a shell perl script that I would write, so its not web facing, its just going to generate the table html code.
by redonkuless
Tue Jan 31, 2012 5:12 pm
Forum: Programming Discussion
Topic: [^misantropia^] little insite if you have some time.
Replies: 4
Views: 3552

Re: [^misantropia^] little insite if you have some time.

ugh your right, question is, is there a better way to do this?
by redonkuless
Tue Jan 31, 2012 3:56 am
Forum: Programming Discussion
Topic: [^misantropia^] little insite if you have some time.
Replies: 4
Views: 3552

[^misantropia^] little insite if you have some time.

[^misantropia^], You seem to know a bit about php, and development, even though this question isn't directly connected to the SDK or development for game enhancement, I was wondering if I could try to bounce some ideas off you. I'm not sure if you saw the site I'm making, but its not just for ufreez...
by redonkuless
Tue Jan 31, 2012 1:25 am
Forum: Programming Discussion
Topic: Question For the Community
Replies: 4
Views: 3128

Re: Question For the Community

So the only way it would be possible is to edit the actual server binary (edit the source code for quake/ioquake) to load additional libraries, to accomplish what I'm looking for?
by redonkuless
Tue Jan 31, 2012 12:22 am
Forum: Programming Discussion
Topic: Question For the Community
Replies: 4
Views: 3128

Question For the Community

Is it possible to run multiple mods at a time? Reason I'm asking is I know one of the mod's I run there is no source code for it, so really can't alter it, but I'm thinking it would be nice to add a few administration plugins to it. Including Mysql logging of events.
by redonkuless
Mon Jan 30, 2012 8:20 pm
Forum: Programming Discussion
Topic: php ufreeze server monitor
Replies: 6
Views: 6825

Re: php ufreeze server monitor

Thanks for the heads up, I went ahead and changed both of those suggestions: <? $q3=new Quake3; $serveradr="208.83.232.26"; //$serveradr="178.33.43.157"; $serverport=27960; $website="www.gaminggroups.com"; $status=$q3->getServerStatus($serveradr,$serverport,1500); if ($...
by redonkuless
Sun Jan 29, 2012 5:06 pm
Forum: Programming Discussion
Topic: php ufreeze server monitor
Replies: 6
Views: 6825

Re: php ufreeze server monitor

Heres an example of it on a wp site, its no where near finished but a good example of the above code:
http://www.gaminggroups.com/?page_id=2715
by redonkuless
Sat Jan 28, 2012 11:56 pm
Forum: Programming Discussion
Topic: php ufreeze server monitor
Replies: 6
Views: 6825

Re: php ufreeze server monitor

Just cleaned up some of the code for webview.php My next release will be a much bigger release: webview.php -V.02: <? require("quake3.php");?> <? $q3=new Quake3; $serveradr="208.83.232.26"; $serverport=27960; $website="www.gaminggroups.com"; $status=$q3->getServerStatus...
by redonkuless
Sat Jan 28, 2012 11:30 pm
Forum: Programming Discussion
Topic: php ufreeze server monitor
Replies: 6
Views: 6825

Re: php ufreeze server monitor

I'm also going to be replacing some of the code with parse.php from my other posting. I'm just trying to find the best way about calling dumpstats and parsing it to the web directory with out flooding the server.
by redonkuless
Sat Jan 28, 2012 11:28 pm
Forum: Programming Discussion
Topic: php ufreeze server monitor
Replies: 6
Views: 6825

php ufreeze server monitor

So I know that there's a few better ways of doing this, however I haven't had much time so here's the update so far. I'm going to be editing the webview.php to add rcon control for kicking along with a few other things dealing with rcon, it will also have the ability once I'm finished with it, to ta...
by redonkuless
Wed Jan 11, 2012 10:59 pm
Forum: Programming Discussion
Topic: Php Script for Ufreeze dumpstats
Replies: 1
Views: 2755

Php Script for Ufreeze dumpstats

This Code is to login to rcon on a quake3 server running Hastes Ufreeze 1.1+. Ufreeze has a neat feature in the later versions that allows a command called dumpstats which dumps stats information from the server into a xml file, the results from that dump is: <game datetime="2012.01.10 15.03.26...
by redonkuless
Tue Jan 10, 2012 12:02 am
Forum: Programming Discussion
Topic: Quake 3 Map config Tool
Replies: 0
Views: 2192

Quake 3 Map config Tool

Hello Everyone, I'm going to be writing some scripts for quake 3, and Id like to post some of the code here, for Reference reasons, here is my first simple perl script for server map config generation: #!/usr/bin/perl -w # Reads maps from map directory creates config to paste into server config of m...