Raised This Month: $ Target: $400
 0% 

Task Scheduler - by JustinHoMi


Post New Thread Reply   
 
Thread Tools Display Modes
lamzaks
Junior Member
Join Date: May 2007
Old 05-19-2007 , 05:07   Re: Task Scheduler - by JustinHoMi
Reply With Quote #91

more inforamtion...

I eddited my tasks and restarted server by command restart... and it stops loading.. nothing..
lamzaks is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 05-19-2007 , 12:22   Re: Task Scheduler - by JustinHoMi
Reply With Quote #92

What are you basing your information of "it stopped loading" on?
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
lamzaks
Junior Member
Join Date: May 2007
Old 05-21-2007 , 20:49   Re: Task Scheduler - by JustinHoMi
Reply With Quote #93

stops working!! Nothings happens! STOPS! Like that script is not installed!!
is it so hard to understand??
when map is changes the same effect...

Last edited by lamzaks; 05-21-2007 at 21:06.
lamzaks is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 05-22-2007 , 03:48   Re: Task Scheduler - by JustinHoMi
Reply With Quote #94

Yes it is hard to understand... You aren't giving any information. All you're saying is it's not doing what's it supposed to do.

Type 'amxx plugins' in the server console and post the output.
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
lamzaks
Junior Member
Join Date: May 2007
Old 05-22-2007 , 06:07   Re: Task Scheduler - by JustinHoMi
Reply With Quote #95

When I typed amxx plugins it shows that the plugin is working... what else can i say...

OK.. dont work if i write commands in amx_task.cfg

lets stop my topics

Last edited by lamzaks; 05-22-2007 at 17:54.
lamzaks is offline
Tramp
Senior Member
Join Date: Aug 2005
Old 07-01-2007 , 18:55   Re: Task Scheduler - by JustinHoMi
Reply With Quote #96

If there are to much task, server will give error:

00:54:20 L 07/02/2007 - 01:03:53: [AMXX] Run time error 4 (plugin "task_scheduler.amxx") - debug not enabled!
00:54:20 L 07/02/2007 - 01:03:53: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).


Author of this plugin should change source, to have unlimited tasks !!
Tramp is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 07-01-2007 , 20:50   Re: Task Scheduler - by JustinHoMi
Reply With Quote #97

Um... how many tasks do you have?
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
Tramp
Senior Member
Join Date: Aug 2005
Old 07-02-2007 , 20:02   Re: Task Scheduler - by JustinHoMi
Reply With Quote #98

Code:
amx_task 23:00 "amx_concert_lastmaps 4" tr
amx_task 23:30 "amx_concert_lastmaps 4" tr
amx_task 23:40 "amx_concert_lastmaps 4" tr
amx_task 23:50 "amx_concert_lastmaps 4" tr
amx_task 00:10 "amx_concert_lastmaps 4" tr
amx_task 00:20 "amx_concert_lastmaps 4" tr
amx_task 00:30 "amx_concert_lastmaps 4" tr
amx_task 00:40 "amx_concert_lastmaps 4" tr
amx_task 00:50 "amx_concert_lastmaps 4" tr
amx_task 01:00 "amx_concert_lastmaps 4" tr
amx_task 01:10 "amx_concert_lastmaps 4" tr
amx_task 01:20 "amx_concert_lastmaps 4" tr
amx_task 01:30 "amx_concert_lastmaps 4" tr
amx_task 01:40 "amx_concert_lastmaps 4" tr
amx_task 01:50 "amx_concert_lastmaps 4" tr
amx_task 02:10 "amx_concert_lastmaps 4" tr
amx_task 02:20 "amx_concert_lastmaps 4" tr
amx_task 02:30 "amx_concert_lastmaps 4" tr
amx_task 02:40 "amx_concert_lastmaps 4" tr
amx_task 02:50 "amx_concert_lastmaps 4" tr
amx_task 05:15 "amx_concert_lastmaps 4" tr
amx_task 10:00 "amx_concert_lastmaps 12" tr
amx_task 10:10 "amx_concert_lastmaps 12" tr
Tramp is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 07-02-2007 , 20:26   Re: Task Scheduler - by JustinHoMi
Reply With Quote #99

I... don't think there is any limit blocking your tasks or causing that warning. You don't have that many.
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
Phorce_Phed
Member
Join Date: Jun 2006
Old 07-18-2007 , 19:02   Re: Task Scheduler - by JustinHoMi
Reply With Quote #100

I want to allow higher ping users most of the time, but restrict my server to lower ping players during "prime time" in the evenings. So I tried this:
Code:
amx_task 17:00 "amx_tsay white High ping kick set to 250 (17:00 to 23:00 GMT-4)" t
amx_task 17:00 "amx_hpk_ping 250" t

amx_task 23:00 "amx_tsay white High ping kick set to 400 (23:00 to 17:00 GMT-4)" t
amx_task 23:00 "amx_hpk_ping 400" t
Unfortunately the server must have crashed at some point so when it came back up the high ping kicker was set to the default ping limit (200).

I figured I could avoid this in the future by just setting the variable (amx_hpk_ping) to the higher limit in amxx.cfg and as long as I positioned this setting before the amx_task lines it would be overridden when necessary. Unfortunately this is not the case.

Is there some better way to implement this? Would be nice to be able to specify a range of times in a single amx_task command so that the plugin would always be on top of what needed to be happening (even if the server crashed).

Last edited by Phorce_Phed; 07-18-2007 at 19:08.
Phorce_Phed 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:45.


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