Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - UrbanY

#46
Quote from: Kid_Buu on May 10, 2018, 07:37 PMmaybe I put something wrong

Could you tell me where to put everything from that system?



Lo primero es poner la primera funciĆ³n en en inicio del Main.nut antes de scriptload arriba los stats Isreg islogg EXT
#47
Quote from: vitogta on May 10, 2018, 03:25 PMI've tested it a bit and I did not found any errors. Sorry if there is some errors. Can you show that error?


Tambien lo probe y no encontre errores me funciono bien
#48
Funcion:

function P_MSG( text, player ) MessagePlayer( "[#000000][[#9400D3]Pais[#000000]][#FFFFFF] " + text, player );

CMD:

else if ( cmd == "pais" )
{
if (status[ player.ID ].Registrado == false) MessagePlayer(RED+"**Usted no esta registrado!",player);
else if ( status[ player.ID ].Logado == false ) MessagePlayer(RED+"**Usted no ah iniciado sesion!",player);
else if ( !text ) MessagePlayer(ORANGE+"Usage: /" + cmd + " [Nick/ID]", player );
else {
local plr = GetPlayer( GetTok( text, " ", 1 ) );
if ( !plr ) MessagePlayer(RED+" >> "+ORANGE+"Invalid Player.", player );
else {
local IP = plr.IP;
P_MSG( ""+plr.Name+" es de" + IpToCountry( plr.IP ) + ".", player );
}
}
 return 0;
}
#49
Support / Re: help
Apr 25, 2018, 12:48 PM