AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   As I create this Motd (https://forums.alliedmods.net/showthread.php?t=281794)

666 04-21-2016 01:37

As I create this Motd
 
With, Team | Frags | Death | Bomb Plant | Bomb Defused


http://i.imgur.com/AKPaQz1.png

fysiks 04-21-2016 08:49

Re: As I create this Motd
 
So, what is your question?

skz 04-21-2016 11:39

Re: As I create this Motd
 
How did you changed the "Ok" of motd to "Aceptar"?

666 04-21-2016 12:16

Re: As I create this Motd
 
Quote:

Originally Posted by skz (Post 2412904)
How did you changed the "Ok" of motd to "Aceptar"?



Appears "accept" because my cs is spanish lenguage

666 04-21-2016 12:22

Re: As I create this Motd
 
Quote:

Originally Posted by fysiks (Post 2412855)
So, what is your question?

my question is, what is the function,
if a player enters in the terrorist team,
the F, D, BP, BD, etc,

is counted in the team Terrorist = TT, in my motd.
equally if a player enters in the team Counter-Terrorist = CT.

F = Frags
D = Deaths
BP = Bomb Plant
BD = Bomb Defuse


This is my motd
PHP Code:

len format(Info1500
        
"<table align=center cellpadding=2 cellspacing=0 border=5 bordercolor=#F0F0F0>\ 
        <th>Equipo\ 
        <th>F\ 
        <th>A\ 
        <th>D\ 
        <th>BP\ 
        <th>BD\ 
        <th>2K\ 
        <th>3K\ 
        <th>4K\ 
        <th>5K</tr>" 
); 
         
         
        
len += format(Info[len], 5500-len,"<th>TT"); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_a[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_d[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_bp[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_bd[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_2k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_3k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_4k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i</tr>"g_szPoints_5k[id]); 
         
        
len += format(Info[len], 5500-len,"<th>CT"); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_a[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_d[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_bp[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_bd[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_2k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_3k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i"g_szPoints_4k[id]); 
        
len += format(Info[len], 5500-len,"<th>%i</tr>"g_szPoints_5k[id]); 
        
show_motd(idInfo""); 



All times are GMT -4. The time now is 18:41.

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