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

CS Pug Mod (4.0.2) [22/12/2021]


Post New Thread Reply   
 
Thread Tools Display Modes
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 07-18-2013 , 15:20   Re: Pug MOD XT (Rewritten)
Reply With Quote #101

Quote:
Originally Posted by rafoN View Post
El único problema que tengo, es que al terminar el primer half, no puedo usar el comando .startpug para comenzar el segundo half. Tengo que esperar que todos coloquen .ready, para asi iniciar el segundo half, alguna solución ?

English.

The only problem I have, is that after the first half, I can not use the command. Startpug to start the second half. I have to wait for all placed. Ready to start the second half well, any solution?

Thanks :d
Added to bug list, thanks
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
kwpd
AlliedModders Donor
Join Date: Mar 2009
Location: panama
Old 07-20-2013 , 23:23   Re: Pug MOD XT (Rewritten)
Reply With Quote #102

this is very interesting ... https://forums.alliedmods.net/showthread.php?t=218751
HLTV solves the problem of auto recording.
hltv_record demo\test = server no crashe.!
__________________

Last edited by kwpd; 07-20-2013 at 23:23.
kwpd is offline
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 07-21-2013 , 10:49   Re: Pug MOD XT (Rewritten)
Reply With Quote #103

Quote:
Originally Posted by kwpd View Post
this is very interesting ... https://forums.alliedmods.net/showthread.php?t=218751
HLTV solves the problem of auto recording.
hltv_record demo\test = server no crashe.!
Post in correct topic man, its never used in PUG, and for now its not have any HLTV function.
And be patient, i will add a HLTV feature fixed by my self and working.
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
kwpd
AlliedModders Donor
Join Date: Mar 2009
Location: panama
Old 07-21-2013 , 11:27   Re: Pug MOD XT (Rewritten)
Reply With Quote #104

thanks .. I'll wait like a piranha. (I have hunger. pug mod)
__________________
kwpd is offline
BeSt2013
Senior Member
Join Date: Mar 2013
Location: Egypt
Old 07-22-2013 , 15:18   Re: Pug MOD XT (Rewritten)
Reply With Quote #105

waiting this mod but plz fast
BeSt2013 is offline
yenfer
BANNED
Join Date: Apr 2010
Old 07-27-2013 , 23:59   Re: Pug MOD XT (Rewritten)
Reply With Quote #106

Hello ^Smiley Please do not you can integrate this code the plugin:

PHP Code:
#pragma semicolon 1   

#include <amxmodx>   
#include <amxmisc>   
#include <hamsandwich>   

// Define the Plugin Version   
new const VERSION[] = "1.0";   

new 
g_iReadyTimer[33];   

new 
bool:g_bIsUserReady[33];   

new 
p_ReadyTime;  

public 
plugin_init()   
{   
    
register_plugin("Say Ready"VERSION"Shuttle_Wave");   
      
    
RegisterHam(Ham_Spawn"player""fwdHamSpawn_Post"1);   
      
    
p_ReadyTime register_cvar("ready_time""60");   
      
    
register_clcmd("say .ready""cmdReady");  
}   

public 
client_disconnect(id)   
{  
    
remove_task(id);  
    
g_bIsUserReady[id] = false;  
}  

public 
fwdHamSpawn_Post(id)   
{   
    if( 
g_bIsUserReady[id] || task_exists(id) || !is_user_alive(id) )  
        return;  
          
    new 
iReadyTime g_iReadyTimer[id] = get_pcvar_num(p_ReadyTime) + 1;  
      
    if( 
iReadyTime )  
    {  
        
iReadyTime 1;  
        
set_pcvar_num(p_ReadyTimeiReadyTime);  
    }  
      
    new 
szName[32];  
    
get_user_nameidszNamecharsmax(szName) );  
      
    
set_task1.0"task_DisplayReadyMsg"idszNamecharsmax(szName), "a"iReadyTime );  
}  

public 
cmdReady(id)   
{   
    
g_bIsUserReady[id] = true;  
    
remove_task(id);  
}   

public 
task_DisplayReadyMsg(name[], id)   
{  
    static 
iTimer;  
    
iTimer = --g_iReadyTimer[id];  
      
    if( !
iTimer )  
    {  
        
client_print(idprint_chat"Are will be kicked in 5 Seconds for not saying .ready");  
        
set_task(5.0"task_KickPlayer"id);  
    }  

    
set_hudmessage(255,255,2550.080.0406.012.0);  
    
show_hudmessage(id"%s (%i:%02i)"nameiTimer 60iTimer 60 );  
}   

public 
task_KickPlayer(id)  
{  
    
server_cmd"kick #%i"get_user_userid(id) );  

O Integrate something paresido, I hope your answer.
yenfer is offline
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 07-28-2013 , 00:24   Re: Pug MOD XT (Rewritten)
Reply With Quote #107

Its same as forceready feature?
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
yenfer
BANNED
Join Date: Apr 2010
Old 07-28-2013 , 00:34   Re: Pug MOD XT (Rewritten)
Reply With Quote #108

I do not understand, explicate better
yenfer is offline
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 07-28-2013 , 02:08   Re: Pug MOD XT (Rewritten)
Reply With Quote #109

This code its a same as force ready or kick feature?
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
kwpd
AlliedModders Donor
Join Date: Mar 2009
Location: panama
Old 07-28-2013 , 03:37   Re: Pug MOD XT (Rewritten)
Reply With Quote #110

Add

amx_ready 0, 1, 2, 3

0 = do nothing
1 = kick
2 = Autoready
3 = Ban 1 Minuto..
__________________
kwpd is offline
Reply


Thread Tools
Display Modes

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:11.


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