Raised This Month: $ Target: $400
 0% 

Delay, works once!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
xeonn
Junior Member
Join Date: Jun 2006
Old 06-25-2006 , 20:02   Delay, works once!
Reply With Quote #1

Hi, i dont know what im doing wrong but here is a example how i want it to work:

amx_lncss makes a screesnhot of EVERY user in the game
amx_lncsst "5.0" makes every 5.0 seconds a screenshot of EVERY user in the game and loops this during the whole game. if everyplayer in the server is gone the set_task will close it self, so if the server is empty the amx_lncsst wont make any screens anymore.

So far i coded:
Code:
/*
* Latenightcup.nl Screenshot System
* Coded by xeoN
* Contact: [email protected] 
*/ 


#include <cstrike>
#include <amxmodx>
#include <amxmisc>

public plugin_init()
{
    register_plugin("LNC Screenshot","1.0","xeoN")
    register_concmd("amx_lncss","cmd_ss",ADMIN_BAN,"- forces all users to take a screenshot");
    register_concmd("amx_lncsst", "cmd_sst", ADMIN_CVAR, "- make every X seconds a screenshot of every user");
    
}

public client_connect(id)
{
     client_print(id, print_console, "[LNCSS] This server supports the Latenightcup Screenshot System (LNCSS).")
     server_print("[LNCSS] This server supports the Latenightcup Screenshot System (LNCSS).")
     return 1
}
public cmd_ss(id,level,cid)
{
   if(!cmd_access(id,level,cid,1))
      return PLUGIN_HANDLED;

   client_cmd(0,"snapshot");
   return PLUGIN_HANDLED;
}

public cmd_sst(id,level,cid)
{
    if(!cmd_access(id,level,cid,1))
    return PLUGIN_HANDLED;
    
    set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id);
    return PLUGIN_HANDLED;
}
Anyone knows how to do this, i need it verry bad
Thank you !
xeonn is offline
Xanimos
Veteran Member
Join Date: Apr 2005
Location: Florida
Old 06-26-2006 , 00:23   Re: Delay, works once!
Reply With Quote #2

set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id);

should be

set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id , _ , _ , "b" , <number of times>);
Xanimos is offline
Send a message via AIM to Xanimos Send a message via MSN to Xanimos
xeonn
Junior Member
Join Date: Jun 2006
Old 06-26-2006 , 04:48   Re: Delay, works once!
Reply With Quote #3

Quote:
Originally Posted by Suicid3
set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id);

should be

set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id , _ , _ , "b" , <number of times>);
yes, but he must do it all match kong so..
xeonn is offline
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 06-26-2006 , 05:05   Re: Delay, works once!
Reply With Quote #4

Quote:
Originally Posted by xeonn
yes, but he must do it all match kong so..
What the crap are you talking about?
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
xeonn
Junior Member
Join Date: Jun 2006
Old 06-26-2006 , 05:06   Re: Delay, works once!
Reply With Quote #5

*UPDATE*

Is this possible:
Code:
public cmd_sst(id,level,cid)
{
    if(!cmd_access(id,level,cid,1))
    return PLUGIN_HANDLED;
    
    set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id, _ , _ , "b", random_num);
    return PLUGIN_HANDLED;
}
xeonn is offline
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 06-26-2006 , 05:10   Re: Delay, works once!
Reply With Quote #6

Nope. It'd be more like:

set_task( get_cvar_float("amx_lncsst"), "cmd_ss", id, _ , _ , "a", random_num(1, 5));
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
xeonn
Junior Member
Join Date: Jun 2006
Old 06-26-2006 , 05:16   Re: Delay, works once!
Reply With Quote #7

I need a script, that during the match the screenshots being continued all match long, till the players leave.
xeonn 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 07:59.


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