Raised This Month: $ Target: $400
 0% 

Delay, works once!


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
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
 



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