This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

question: what is this plugin ( cannot find it anywhere )


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
ToriQQ
Member
Join Date: Mar 2010
Old 08-29-2010 , 07:03   question: what is this plugin ( cannot find it anywhere )
Reply With Quote #1

the plugin is something like this

2/10 alley
3/10 alley
4/10 alley
5/10 alley
6/10 alley
6/10 alley
7/10 aley
8/10 full a
9/10 full a
10/10 full map
this plugin... it will show a chat message at the top something like this
There is currently x/10 players <alley/fulla/fullmap>
__________________

ToriQQ is offline
r14170
Veteran Member
Join Date: Dec 2009
Old 08-29-2010 , 07:16   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #2

can u explain more? i cant even imagine what it looks like
r14170 is offline
ToriQQ
Member
Join Date: Mar 2010
Old 08-29-2010 , 07:31   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #3

this in de_dust2 one. it shows a hud message saying about it.. i can't explain very detailed coz its jus a simple hud message each round saying full map or alley or full a depending on the numbers of players
__________________

ToriQQ is offline
am_amx
Senior Member
Join Date: Jul 2010
Location: here
Old 08-29-2010 , 08:48   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #4

all he wants is a plugin that displays play only alley if players less than 7 and full when more than eight
am_amx is offline
r14170
Veteran Member
Join Date: Dec 2009
Old 08-29-2010 , 09:02   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #5

z0mg!
r14170 is offline
ToriQQ
Member
Join Date: Mar 2010
Old 08-31-2010 , 06:06   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #6

any help for this plugin
__________________

ToriQQ is offline
r14170
Veteran Member
Join Date: Dec 2009
Old 08-31-2010 , 09:13   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #7

make screenshot!
r14170 is offline
nikhilgupta345
Veteran Member
Join Date: Aug 2009
Location: Virginia
Old 08-31-2010 , 11:29   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #8

Try this

untested:

Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Where To Play Hud"
#define VERSION "1.0"
#define AUTHOR "nikhilgupta345"


public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    
    
}

public client_putinserver(id)
{
  if(task_exists(1)
  remove_task(1)
  set_task(10.0, "hudmessage", 1, _, _, "b")
}

public hudmessage()
{
  new players[32], num
  get_players(players, num)
  new maxplayers = get_maxplayers
  new float:ratio = num / maxplayers
  set_hudmessage(255, 255, 255, -1.0, 0.35, 0, 6.0, 10.0, 0.1, 1.0)
  if(ratio <= .6)
  {
    show_hudmessage(0, "Players: %i/%i\nWe are currently playing alley only.", num, maxplayers)
  }
  else if (ration > .6 && ration < 1.0)
  {
    show_hudmessage(0, "Players: %i/%i\nWe are currently playing full A.", num, maxplayers)
  }
  else if (ratio = 1.0)
  {
    show_hudmessage(0, "Players: %i/%i\nWe are currently playing on the full map.", num, maxplayers)
  }
}
Tell me if the hudmessage is all on one line, not too sure how to change lines in a hud :/
nikhilgupta345 is offline
Send a message via ICQ to nikhilgupta345 Send a message via Yahoo to nikhilgupta345
platzpatrone
Veteran Member
Join Date: Apr 2007
Location: Germany
Old 08-31-2010 , 11:57   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #9

just with a: "\n" u can make the next line
platzpatrone is offline
nikhilgupta345
Veteran Member
Join Date: Aug 2009
Location: Virginia
Old 08-31-2010 , 13:24   Re: question: what is this plugin ( cannot find it anywhere )
Reply With Quote #10

Then I got it right
nikhilgupta345 is offline
Send a message via ICQ to nikhilgupta345 Send a message via Yahoo to nikhilgupta345
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 15:28.


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