Raised This Month: $ Target: $400
 0% 

[CS:S/CS:GO] GunGame


Post New Thread Reply   
 
Thread Tools Display Modes
altex
Veteran Member
Join Date: May 2009
Location: Russia
Old 06-11-2009 , 01:30   Re: GunGame:SM
Reply With Quote #41

Quote:
Originally Posted by Stitllams View Post
Is there a way to have the rounds continue until there is a winner, not taking into account that the map could be changed if ppl got bored with it.
It is not possible in current release.

Quote:
Originally Posted by Stitllams View Post
Also, if the set number of rounds have been completed or there is a mapchange and no winner yet, is there a way to declare the leader/leaders and have the music, instead of just changing map with nothing but the leaderboard.
After next release of sourcemod 1.2.
altex is offline
altex
Veteran Member
Join Date: May 2009
Location: Russia
Old 06-11-2009 , 16:55   Re: GunGame:SM
Reply With Quote #42

Release 1.0.0.1.11:
* Fixed top10 update on gungame win (it was not working if players have same wins).
* Fixed not to give additional grenade if player kills with grenade with ExtraNade on.
altex is offline
nizate
Junior Member
Join Date: Jun 2009
Old 06-12-2009 , 02:34   Re: GunGame:SM
Reply With Quote #43

Is there a way to get the GG to drop the last weapon and get the next so players can level up to the next level during the same round?
I hate only being able to level up 1 time per round.
Is there a certain configuration or addon I need for it?

Last edited by nizate; 06-12-2009 at 03:20.
nizate is offline
Send a message via Skype™ to nizate
altex
Veteran Member
Join Date: May 2009
Location: Russia
Old 06-12-2009 , 03:18   Re: GunGame:SM
Reply With Quote #44

Quote:
Originally Posted by nizate View Post
Is there a way to get the GG to drop the last weapon and get the next so players can level up to the next level during the same round?
I hate only being able to level up 1 time per round.
It's "Turbo" "1" in your config.

One suggestion to all: please read all inline comments in config files before asking, maybe it will help you much faster ;)

Last edited by altex; 06-12-2009 at 18:03.
altex is offline
nizate
Junior Member
Join Date: Jun 2009
Old 06-12-2009 , 03:21   Re: GunGame:SM
Reply With Quote #45

Thank you very much, I didn't know what turbo was... Thanks.
nizate is offline
Send a message via Skype™ to nizate
Xaphan
SourceMod Donor
Join Date: Jun 2008
Old 06-15-2009 , 02:21   Re: GunGame:SM
Reply With Quote #46

Anyway we can host the php file ourselves, this way we can edit it to match our motd's =)

http://gungame5.com/gg5_win.php
--
Thanks altex for all the updates too...
Xaphan is offline
altex
Veteran Member
Join Date: May 2009
Location: Russia
Old 06-15-2009 , 03:30   Re: GunGame:SM
Reply With Quote #47

Quote:
Originally Posted by Xaphan View Post
Anyway we can host the php file ourselves, this way we can edit it to match our motd's =)
http://gungame5.com/gg5_win.php
In server.cfg - sm_gungame_display_winner_url "http://example.com/".
altex is offline
bl4nk
SourceMod Developer
Join Date: Jul 2007
Old 06-15-2009 , 04:07   Re: GunGame:SM
Reply With Quote #48

Quote:
Originally Posted by Xaphan View Post
Anyway we can host the php file ourselves, this way we can edit it to match our motd's =)

http://gungame5.com/gg5_win.php
--
Thanks altex for all the updates too...

PHP Code:
<?php

$winnerName 
htmlentities($_GET['winnerName']);
$loserName htmlentities($_GET['loserName']);
$wins htmlentities($_GET['wins']);
$place htmlentities($_GET['place']);
$totalPlaces htmlentities($_GET['totalPlaces']);

?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GunGame Winner</title>
<style type="text/css">
body {
    background:#CCCCCC;
    font-family:Verdana,Tahoma;
    color:#000000;
    vertical-align:middle;
}
</style>
</head>
<body>
<table height="100%" topmargin="0" bottommargin="0" align="center"  cellpadding="0" cellspacing="0">
<tr align="center" valign="middle">
<td valign="middle">
<table><tr><td>
<img src="http://www.gungame5.com/images/gungame5_logo.png">&nbsp;&nbsp;</td><td>
<b></b><?= $winnerName ?> Won!<hr><br />

<b></b><?= $winnerName ?> won the game by killing <?= $loserName ?><b></b><br /><br />
<b>Stats:</b><br />
Wins: <?= $wins ?><b></b><br />
Place: <?= $place ?><b></b> of <?= $totalPlaces ?><b></b></td></tr><tr><td colspan="2" align="center"><br><br>Powered by <a href="http://gungame5.com">www.gungame5.com</a></td></tr></table></td></tr></table>
</body>
</html>
bl4nk is offline
Xaphan
SourceMod Donor
Join Date: Jun 2008
Old 06-15-2009 , 04:33   Re: GunGame:SM
Reply With Quote #49

Quote:
Originally Posted by altex View Post
In server.cfg - sm_gungame_display_winner_url "http://example.com/".
Yes, I saw that after I posted, thanks altex
And thanks to bl4nk to.. =)
Xaphan is offline
bl4nk
SourceMod Developer
Join Date: Jul 2007
Old 06-15-2009 , 05:08   Re: GunGame:SM
Reply With Quote #50

Looks like I didn't put any of the things in the right place (inside of the <b></b> statements). Here's it with them in the right place (although you could have probably figured it out):

PHP Code:
<?php

$winnerName 
htmlentities($_GET['winnerName']);
$loserName htmlentities($_GET['loserName']);
$wins htmlentities($_GET['wins']);
$place htmlentities($_GET['place']);
$totalPlaces htmlentities($_GET['totalPlaces']);

?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GunGame Winner</title>
<style type="text/css">
body {
    background:#CCCCCC;
    font-family:Verdana,Tahoma;
    color:#000000;
    vertical-align:middle;
}
</style>
</head>
<body>
<table height="100%" topmargin="0" bottommargin="0" align="center"  cellpadding="0" cellspacing="0">
<tr align="center" valign="middle">
<td valign="middle">
<table><tr><td>
<img src="http://www.gungame5.com/images/gungame5_logo.png">&nbsp;&nbsp;</td><td>
<b><?= $winnerName ?></b> Won!<hr><br />

<b><?= $winnerName ?></b> won the game by killing <b><?= $loserName ?></b><br /><br />
<b>Stats:</b><br />
Wins: <b><?= $wins ?></b><br />
Place: <b><?= $place ?></b> of <b><?= $totalPlaces ?></b></td></tr><tr><td colspan="2" align="center"><br><br>Powered by <a href="http://gungame5.com">www.gungame5.com</a></td></tr></table></td></tr></table>
</body>
</html>
bl4nk is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:22.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode