AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   [HELP] Multi-lingual system bug. (https://forums.alliedmods.net/showthread.php?t=272938)

CrazY. 10-09-2015 17:22

[HELP] Multi-lingual system bug.
 
Hi , i try this code to automatically show messages , but have one bug , the message not show with my default language , this is the code:

PHP Code:

#include < amxmodx >  

new iMsgIndex;  

new 
messages[][] =  
{  
    
"MSG_1",
    
"MSG_2",
    
"MSG_3"
}

public 
plugin_init()  
{  
    
register_dictionary("zp_basic_messages.txt"); 
    
set_task(15.0"show_messages", .flags="b");  
}  

public 
show_messages(id)  
{  
    
iMsgIndex iMsgIndex sizeof(messages);  
    
client_print_color(0"^4[ZP] ^1%L"LANG_PLAYERmessages[iMsgIndex++], LANG_PLAYER);  


stock client_print_color(const id,const input[], any:...) 

    new 
msg[191], players[32], count 1vformat(msg,190,input,3); 
    
replace_all(msg,190,"/g","^4");    // green 
    
replace_all(msg,190,"/y","^1");    // normal 
    
replace_all(msg,190,"/t","^3");    // team 
         
    
if (idplayers[0] = id; else get_players(players,count,"ch"); 
         
    for (new 
i=0;i<count;i++) 
    { 
        if (
is_user_connected(players[i])) 
        { 
            
message_begin(MSG_ONE_UNRELIABLE,get_user_msgid("SayText"),_,players[i]); 
            
write_byte(players[i]); 
            
write_string(msg); 
            
message_end(); 
        } 
    } 


PHP Code:

[en]
MSG_1 Addon created by /gCrazY/yEnjoy! :D
MSG_2 
Press /gF /yto use the flashlight.
MSG_3 Write /g/website /yto see my website url.

[
bp]
MSG_1 Addon criado por /gCrazY/yAproveite! :D
MSG_2 
Aperte /gF /ypara usar a lanterna.
MSG_3 Escreva /g/website /ypara ver o url do meu site


OciXCrom 10-09-2015 20:19

Re: [HELP] Multi-lingual system bug.
 
Why another topic?

redivcram 10-10-2015 07:18

Re: [HELP] Multi-lingual system bug.
 
I told you what to do in your previous topic

CrazY. 10-10-2015 09:41

Re: [HELP] Multi-lingual system bug.
 
o.o

redivcram 10-10-2015 10:27

Re: [HELP] Multi-lingual system bug.
 
What "o.o" ?

https://forums.alliedmods.net/showthread.php?t=272880

Read my post


All times are GMT -4. The time now is 22:16.

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