Hey,
Ich wollte mal fragen ob es hier irgendwo ein anti Capslock System gibt.
Oder ob jemand weißt wie man sowas Scripten kann.
Ich weiß nämlich nicht wie das geht.
Mit freundlichen Grüßen,
Electro
Hey,
Ich wollte mal fragen ob es hier irgendwo ein anti Capslock System gibt.
Oder ob jemand weißt wie man sowas Scripten kann.
Ich weiß nämlich nicht wie das geht.
Mit freundlichen Grüßen,
Electro
public OnPlayerText( playerid, text[ ] )
{
if( IsCaps( text ) )
{
SendClientMessage( playerid, -1, "Disable the caps and rewrite" );
return 0;
}
return 1; // Returns 0 only if you want to send a custom Chat.
}
stock IsCaps( text[ ] )
{
for( new i, j = strlen( text )-1; i < j; i ++ )
{
if( ( 'A' <= text[ i ] <= 'Z' ) && ( 'A' <= text[ i+1 ] <= 'Z' ) )
return true;
}
return false;
}
Alles anzeigenpublic OnPlayerText( playerid, text[ ] )
{
if( IsCaps( text ) )
{
SendClientMessage( playerid, -1, "Disable the caps and rewrite" );
return 0;
}
return 1; // Returns 0 only if you want to send a custom Chat.
}
stock IsCaps( text[ ] )
{
for( new i, j = strlen( text )-1; i < j; i ++ )
{
if( ( 'A' <= text[ i ] <= 'Z' ) && ( 'A' <= text[ i+1 ] <= 'Z' ) )
return true;
}
return false;
}
wie könnte man das in occ abfragen oder gillt das dann für alles ?
wie könnte man das in occ abfragen oder gillt das dann für alles ?
Keine Ahnung, wenn nicht,
kannst Du das gleiche auch bei /ooc abfragen. Einfach IsCaps(text), oder wie du halt den Text bei dem Befehl
definiert hast.