13.02.2015, 16:18
Bom galera eu queria fazer isso na minha casa, ou apenas colocar SHOPPING na frente, ou apenas mudar o simbolo pro dinheiro, ou fazer os 2 se possivel, alguem tem idйia de como fazer isso ? Valeu
if( !strcmp( cmd, "/colocarshop", true ))
{
for( new c; c < MAX_CASAS; ++c )
{
if( dini_Int( f( playerid ), "AdminL" ) == 1 )
{
if( IsPlayerInRangeOfPoint( playerid, 3.0, CasaInfo[ c ][ PickupX ], CasaInfo[ c ][ PickupY ], CasaInfo[ c ][ PickupZ ] ))
{
format( hFile, sizeof( hFile ), "Casas/casa%d.ini", CasaInfo[ c ][ Numero ] );
dini_IntSet( hFile, "Shopping", 1 );
SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Casa reservada para o shopping." );
return 1;
}
}
else
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
return 1;
}
}
}
if( !strcmp( cmd, "/retirarshop", true ))
{
for( new c; c < MAX_CASAS; ++c )
{
if( dini_Int( f( playerid ), "AdminL" ) == 1 )
{
if( IsPlayerInRangeOfPoint( playerid, 3.0, CasaInfo[ c ][ PickupX ], CasaInfo[ c ][ PickupY ], CasaInfo[ c ][ PickupZ ] ))
{
format( hFile, sizeof( hFile ), "Casas/casa%d.ini", CasaInfo[ c ][ Numero ] );
dini_IntSet( hFile, "Shopping", 0 );
SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Casa retirada do Shopping." );
return 1;
}
}
else
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
return 1;
}
}
}
format( gStr, sizeof( gStr ), "Casa {F03400}[ {FFFFFF}ID %d {F03400} ] {FFFFFF}- {00FF00}Shopping", CasaInfo[ c ][ Numero ] ); // Em "Shopping" vocк altera para oque quiser! Update3DTextLabelText( CasaLabel[ c ], COLOR_BRANCO, gStr );
CasaPickup[ c ] = CreatePickup( 1212, 23, CasaInfo[ c ][ PickupX ], CasaInfo[ c ][ PickupY ], CasaInfo[ c ][ PickupZ ] ); // Em 1212 vocк muda para o Icone que quiser.
Deus ta vendo vocк copiando a NWD Games.
O resto vocк se vira, Aonde coloca, Etc! Abraзo! |
else if( !strcmp( tmp, "shop", true )) { for( new c; c < MAX_CASAS; ++c ) { if( aInfo[ playerid ][ Admin ] == 1 ) { if( IsPlayerInRangeOfPoint( playerid, 3.0, CasaInfo[ c ][ PickupX ], CasaInfo[ c ][ PickupY ], CasaInfo[ c ][ PickupZ ] )) { format( hFile, sizeof( hFile ), "Casas/casa%d.ini", CasaInfo[ c ][ Numero ] ); dini_IntSet( hFile, "Shopping", 1 ); SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Casa reservada para o shopping." ); } return 1; } else return SendClientMessage( playerid, 0xA9C4E4AA, "[ SERVER ] Comando invбlido !" ); } }
if( Favela[ i ] == false )
{
format( gStr, sizeof( gStr ), "~y~~h~Area ~y~~h~De ~y~~h~Dm - ~r~~h~/dm" );
TextDrawSetString( Server_Areas[ i ], gStr );
TextDrawShowForPlayer( i, Server_Areas[ i ] );
M4[ i ] = true;
}
Que erro deu? Poste aqui pra resolver... Primeiro vou resolver o do Shopping depois esse aн.
|