Raised This Month: $51 Target: $400
 12% 

Deagles' Map Management 2.30b Updated 10/28


Post New Thread Closed Thread   
 
Thread Tools Display Modes
Spiky Pirate
Senior Member
Join Date: Oct 2006
Old 02-14-2007 , 18:45   Re: Deagles' Map Management 2.30b Updated 10/28
#671

hmmm, for somehow it changes map immediatley.
Should I try putting "amx_cvar enforce_timelimit 0" in amxx.cfg or servers.cfg?
Spiky Pirate is offline
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 02-14-2007 , 21:08   Re: Deagles' Map Management 2.30b Updated 10/28
#672

Quote:
Originally Posted by Spiky Pirate View Post
hmmm, for somehow it changes map immediatley.
Should I try putting "amx_cvar enforce_timelimit 0" in amxx.cfg or servers.cfg?
Once you change a command in game, its stays taht way untill you change it. I mean i would take it you checked teh cvar to see what it is and see if changed and what not, since cvars are a lil different, sometimes you have to put them into your server.cfg. So when you checked it, was it different? And if it was then yea sure, add the cvar to your amxx.cfg if you dont know much about your server.cfg
__________________
bmann_420 is offline
Spiky Pirate
Senior Member
Join Date: Oct 2006
Old 02-15-2007 , 15:09   Re: Deagles' Map Management 2.30b Updated 10/28
#673

i added the line in both of server.cfg and amxx.cfg, and now it works
(And i dont know how to see all the cvars, how does that work?)
Spiky Pirate is offline
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 02-15-2007 , 15:13   Re: Deagles' Map Management 2.30b Updated 10/28
#674

amx_cvar enforce_timelimit

Shows what it is, since their is no value there.

Server.cfg = is read on server start. Unless you have in your server.cfg
mapchangecfgfile server.cfg
Then its read at map change (amx_cvar before a cvar is not required ie. enforce_timelmit 0)

amxx.cfg is read every map change (required amx_cvar before cvars ie. amx_cvar enforce_timelimit 0)

P.S. I personally only use the amxx.cfg for xredirect, everything else is in the server.cfg for echo log usage. amxx.cfg echos all commands and logs them, server.cfg does not echo anything.
__________________
bmann_420 is offline
James
Senior Member
Join Date: Dec 2004
Old 02-16-2007 , 12:30   Re: Deagles' Map Management 2.30b Updated 10/28
#675

When I allow 3 of 5 maps can be nominated by players, which maps are finally nominated? first 3 map which is typed by first 3 writers? Or 3 top maps, which have most nomination votes?
__________________
Do good things, and good things happen to you
James is offline
Skyrider
AMX Mod X Beta Tester
Join Date: May 2005
Location: Netherlands
Old 02-17-2007 , 14:13   Re: Deagles' Map Management 2.30b Updated 10/28
#676

Possible that the "rockthevote" timelimit can be removed? So you can instantly rock a vote? This is very useful in SvenCoop.

Quote:
You must specify a value between 5 and 30 for dmap_rtvwait
Kinda lame, to be honest. ^_^.
__________________

Last edited by Skyrider; 02-17-2007 at 14:16.
Skyrider is offline
Send a message via AIM to Skyrider Send a message via MSN to Skyrider Send a message via Yahoo to Skyrider
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 02-17-2007 , 16:59   Re: Deagles' Map Management 2.30b Updated 10/28
#677

Well, their has to be a reason behind it. I can possibly look into it, but im sure its not just to be lame. Gatta have some reason. Possibly the people who voted for the map it is now at would like at least 5 minuts on it before somebody can change it.

EDIT:

This starts at line 2158, so if you want you can try and use the edited code and see if ti works

I have No idea if this will work, but if you change these lines:

HTML Code:
public dmaprtvwait(id,level,cid)
{
   if (!cmd_access(id,level,cid,2)) return PLUGIN_HANDLED

   new arg[32]
   read_argv(1,arg,3)
   new wait
   wait=str_to_num(arg)
   if(wait>=5&&wait<=30)
   {
      minimumwait=wait
      savesettings(id)
      showsettings(id)
   }
   else{
      console_print(id,"You must specify a value between 5 and 30 for dmap_rtvwait")
      console_print(id,"This sets how long must pass from the start of map before players may rockthevote")
]TO maybe possibly, possibly

HTML Code:
public dmaprtvwait(id,level,cid)
{
   if (!cmd_access(id,level,cid,2)) return PLUGIN_HANDLED

   new arg[32]
   read_argv(1,arg,3)
   new wait
   wait=str_to_num(arg)
   if(wait>=1&&wait<=30)
   {
      minimumwait=wait
      savesettings(id)
      showsettings(id)
   }
   else{
      console_print(id,"You must specify a value between 1 and 30 for dmap_rtvwait")
      console_print(id,"This sets how long must pass from the start of map before players may rockthevote")
Screw it, i tried it here. It may not work but you can test it.

Now this is Deages map manage from jtp v2.40
Attached Files
File Type: sma Get Plugin or Get Source (deagsmapmanager.sma - 471 views - 96.2 KB)
__________________

Last edited by bmann_420; 02-17-2007 at 17:42.
bmann_420 is offline
Spiky Pirate
Senior Member
Join Date: Oct 2006
Old 02-18-2007 , 14:27   Re: Deagles' Map Management 2.30b Updated 10/28
#678

I just found a minor glitch with this plugin. When people with clan tags nominate maps, their names don't show up properly when you type "nominations." For example, if John The Killer nominates a map, his name and his wanted map show up properly: "de_dust by: John The Killer"

However, when people with clan tags nominate, their names don't show up properly, for example, if |KbK|Spiky Pirate nominates a map, his name cuts off, "fy_iceworld by: |KbK|Spiky Pirat" then on the next line, "fy_iceworld by: |Kbk|Sp"

This is what I'm talking about:






Attached Thumbnails
Click image for larger version

Name:	kbk.jpg
Views:	109
Size:	33.2 KB
ID:	13968  
Spiky Pirate is offline
vlad
Junior Member
Join Date: Mar 2004
Old 02-18-2007 , 14:41   Re: Deagles' Map Management 2.30b Updated 10/28
#679

@Spiky Pirate

http://forums.alliedmods.net/showpos...&postcount=632
vlad is offline
Hit_alive
Junior Member
Join Date: Dec 2004
Location: Belarus
Old 02-18-2007 , 16:24   Re: Deagles' Map Management 2.30b Updated 10/28
#680

How to disable logs?
Hit_alive is offline
Closed Thread



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 19:05.


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