Raised This Month: $32 Target: $400
 8% 

Desvirtúe aquí.


  
 
 
Thread Tools Display Modes
sombrilla
Veteran Member
Join Date: Apr 2009
Location: Buenos Aires
Old 09-16-2010 , 16:46   Re: [ES] El Offtopic va ACA! (con reglas)
#6481

Celeron para bajarte el Portal necesitas una nvidia me parece
__________________

sombrilla is offline
Send a message via MSN to sombrilla
Raddish
BANNED
Join Date: Jul 2008
Location: Argentina
Old 09-16-2010 , 16:54   Re: [ES] El Offtopic va ACA! (con reglas)
#6482

Quote:
Originally Posted by sombrilla View Post
Celeron para bajarte el Portal necesitas una nvidia me parece
Yo tengo marca bolivian y lo puedo bajar igual.

Me dijieron que hay un gordo salchichon que dice Location: Cordoba, su joindate es Aug 2010 es Senior Member y tiene un avatar de CHICAS, ES UN GORDO KKVNN JAHHSJJ we :$

PD: Me diasnogticaron piel reseca, tengo q tomar agua todo el dia =(

Last edited by Raddish; 09-16-2010 at 16:57.
Raddish is offline
Old 09-16-2010, 16:55
Raddish
This message has been deleted by Raddish. Reason: doble post no me di cuenta
S34Qu4K3
Veteran Member
Join Date: Jan 2010
Location: Galicia
Old 09-16-2010 , 17:17   Re: [ES] El Offtopic va ACA! (con reglas)
#6483

Como compruebo si solo queda un tt vivo?
PHP Code:
public evDeathMsg(id)
{
    new 
iPlayers[32], iNumPlayers
    
new 0iPlayerIDiCount 0iLoneID 0
 
    
for(0iNumPlayersi++)
    {
        
iPlayerID iPlayers[i]
        if( 
is_user_alive(iPlayerID) && cs_get_user_team(iPlayerID) == CS_TEAM_T )
        {
            
iCount++
            
iLoneID iPlayerID
        
}
    }
 
    if(
iCount == 1)
    {
        
g_iLastTerroristId iLoneID
    
}
}
public 
asdasfaef(id)
 if( 
id == g_iLastTerroristId)
    {
        
// Show menu.
    

__________________

- ASM2SMA: Experimental AMXX Assembly encoder

- Defuse Bar Fix

Quote:
Originally Posted by Arkshine
I DON'T WANT TO SEE NOOOOOOOOOOOOOOO AHHHHH. MY EYES ARE ALREADY HURT.

Last edited by S34Qu4K3; 09-16-2010 at 17:22.
S34Qu4K3 is offline
Lawer
Senior Member
Join Date: Jul 2010
Location: C:\WINDOWS\MyHouse
Old 09-16-2010 , 17:21   Re: [ES] El Offtopic va ACA! (con reglas)
#6484

Quote:
Originally Posted by S34Qu4K3 View Post
Como compruebo si solo queda un tt vivo?
algo de get_max_players & is_user_alive todo metidito en un for?

Podrías hacer algo a si

PHP Code:
            new Players[32], Numero
            get_players
(PlayersNumero"ae""TERRORIST")
            
            if (
Numero == 1)
            {
                
// Code...
            

__________________
Lawer is offline
Send a message via Skype™ to Lawer
Asdito´^
Veteran Member
Join Date: Feb 2010
Location: Santa Fe, Argentina
Old 09-16-2010 , 17:22   Re: [ES] El Offtopic va ACA! (con reglas)
#6485

PHP Code:
fnGetAliveTs()
{
    static 
iTsid
    iTs 
0
    
    
for (id 1id <= get_maxplayers(); id++)
    {
        if (
is_user_alive(id))
        {            
            if (
fm_cs_get_user_team(id) == 1)
                
iTs++
        }
    }
    
    return 
iTs;
}

if (
fnGetAliveTs() == 1) {
           
//asd 
__________________
################################
Asdito´^ is offline
Send a message via MSN to Asdito´^
S34Qu4K3
Veteran Member
Join Date: Jan 2010
Location: Galicia
Old 09-16-2010 , 17:23   Re: [ES] El Offtopic va ACA! (con reglas)
#6486

Gracias a ambos, aun asi, updatee el post de arriba
__________________

- ASM2SMA: Experimental AMXX Assembly encoder

- Defuse Bar Fix

Quote:
Originally Posted by Arkshine
I DON'T WANT TO SEE NOOOOOOOOOOOOOOO AHHHHH. MY EYES ARE ALREADY HURT.
S34Qu4K3 is offline
alan_el_more
Veteran Member
Join Date: Jul 2008
Location: amxmodx-es.com
Old 09-16-2010 , 17:25   Re: [ES] El Offtopic va ACA! (con reglas)
#6487

Code:
fnGetAliveTs() {     static iTs, id     iTs = 0         for (id = 1; id <= get_maxplayers(); id++)     {         if (is_user_alive(id))         {           
            if (cs_get_user_team(id) == CS_TEAM_T)
                iTs++         }     }         return iTs; }
__________________
alan_el_more is offline
S34Qu4K3
Veteran Member
Join Date: Jan 2010
Location: Galicia
Old 09-16-2010 , 17:32   Re: [ES] El Offtopic va ACA! (con reglas)
#6488

Thank you
Otra cosita, como hago para que si selecciono en un menu, una opcion, en la ronda siguiente sea CT o viceversa?
Alan, cual es la cancion de el video de: http://forums.alliedmods.net/showthread.php?t=136204
__________________

- ASM2SMA: Experimental AMXX Assembly encoder

- Defuse Bar Fix

Quote:
Originally Posted by Arkshine
I DON'T WANT TO SEE NOOOOOOOOOOOOOOO AHHHHH. MY EYES ARE ALREADY HURT.

Last edited by S34Qu4K3; 09-16-2010 at 17:34.
S34Qu4K3 is offline
alan_el_more
Veteran Member
Join Date: Jul 2008
Location: amxmodx-es.com
Old 09-16-2010 , 17:34   Re: [ES] El Offtopic va ACA! (con reglas)
#6489

crea un bool y seteala en verdadero cuando elegis la opcion, despues cuando respawnea si el bool es verdadero seteas a falso y lo pasas de team
__________________
alan_el_more is offline
S34Qu4K3
Veteran Member
Join Date: Jan 2010
Location: Galicia
Old 09-16-2010 , 17:35   Re: [ES] El Offtopic va ACA! (con reglas)
#6490

Se, pero si hago eso, igual hace antes spawn y le paso el team cuando esta en el spawn tt por ej
__________________

- ASM2SMA: Experimental AMXX Assembly encoder

- Defuse Bar Fix

Quote:
Originally Posted by Arkshine
I DON'T WANT TO SEE NOOOOOOOOOOOOOOO AHHHHH. MY EYES ARE ALREADY HURT.
S34Qu4K3 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 14:49.


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