SA-MP Forums Archive
[DUVIDA]Sobre Posts - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [DUVIDA]Sobre Posts (/showthread.php?tid=127859)



[DUVIDA]Sobre Posts - hudsonramos10 - 15.02.2010

- Olha Galera Desculpe Fazer uma pergunta que ja foi feita mas й que nao entendi .

Queria Saber Como por Chat para pessoas que estгo perto , Pois estou com um server TDM '
E Todo mundo escuta oque fala ,

Eu queria que apenas pessoas que estivessem perto , como se fosse um RPG ,

E Tbm depois da Explicaзгo queria saber se tem comando /an

E que apareзa exemplo , Numero de Caracteres e Preзo do anuncio !

E Sem o numero de telefone '-'

Obrigado '


Re: [DUVIDA]Sobre Posts - SlashPT - 15.02.2010

Code:
LimitGlobalChatRadius(RADIAЗВO QUE VC QUER AKI);



Re: [DUVIDA]Sobre Posts - hudsonramos10 - 15.02.2010

Vlw Obrigado

Mas tem /an com mensagem na tela do tipo

A mensagem tem tantos caracteres , vocк Gastou ( tanto dinheiro ) '

e o tempo de anuncio !


Re: [DUVIDA]Sobre Posts - [H]unter - 15.02.2010

pawn Code:
if(GetPlayerMoney(playerid) < payout)
        {
          format(string, sizeof(string), "* Vocк usou %d caracters e custou $%d,.", offset, payout);
          SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
          return 1;
        }



Re: [DUVIDA]Sobre Posts - hudsonramos10 - 15.02.2010

Quote:
Originally Posted by [H
unter ]
pawn Code:
if(GetPlayerMoney(playerid) < payout)
        {
          format(string, sizeof(string), "* Vocк usou %d caracters e custou $%d,.", offset, payout);
          SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
          return 1;
        }
Obrigado Estarei a Testar


Re: [DUVIDA]Sobre Posts - [H]unter - 15.02.2010

Criei um Aqui sу vocк montar ele
pawn Code:
//Topo
new tempoanuncio;
forward Anuncio();
// Public
public Anuncio()
{
    if(tempoanuncio > 0)
    {
            tempoanuncio = 0;
            return 1;
    }
return 1;
}
//
pawn Code:
if(panuncio == 1)
        {
        SendClientMessage(playerid,COLOR_GRAD2,"Espere alguns Segundos para poder anunciar novamente!");
        return 1;
        }
            GivePlayerMoney(playerid,- praVoce);
            SBizzInfo[7][sbTill] += praVoce;
            ExtortionSBiz(7,praVoce);
            format(string,sizeof(string),"Anuncio: %s,Contato: %s Telefone: %d", result,sendername,PlayerInfo[playerid][pPnumber]);
            OOCNews(TEAM_GROVE_COLOR,string);
            format(string,sizeof(string),"~r~Pagou %d R$~n~~w~Letra contidas: %d Caracteres",praVoce,idx);
            GameTextForPlayer(playerid,string,5000,5);
            panuncio = 1;
            TempoAn = SetTimer("Anuncio", 30000, 0);
        }
        return 1;
    }



Re: [DUVIDA]Sobre Posts - faeldk - 15.02.2010

Quote:
Originally Posted by [H
unter ]
Criei um Aqui sу vocк montar ele
pawn Code:
//Topo
new tempoanuncio;
forward Anuncio();
// Public
public Anuncio()
{
    if(tempoanuncio > 0)
    {
            tempoanuncio = 0;
            return 1;
    }
return 1;
}
//
pawn Code:
if(panuncio == 1)
        {
        SendClientMessage(playerid,COLOR_GRAD2,"Espere alguns Segundos para poder anunciar novamente!");
        return 1;
        }
            GivePlayerMoney(playerid,- praVoce);
            SBizzInfo[7][sbTill] += praVoce;
            ExtortionSBiz(7,praVoce);
            format(string,sizeof(string),"Anuncio: %s,Contato: %s Telefone: %d", result,sendername,PlayerInfo[playerid][pPnumber]);
            OOCNews(TEAM_GROVE_COLOR,string);
            format(string,sizeof(string),"~r~Pagou %d R$~n~~w~Letra contidas: %d Caracteres",praVoce,idx);
            GameTextForPlayer(playerid,string,5000,5);
            panuncio = 1;
            TempoAn = SetTimer("Anuncio", 30000, 0);
        }
        return 1;
    }
pawn Code:
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(159) : warning 217: loose indentation
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(191) : warning 217: loose indentation
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(201) : error 017: undefined symbol "panuncio"
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(206) : warning 217: loose indentation
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(206) : error 017: undefined symbol "praVoce"
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(207) : error 017: undefined symbol "SBizzInfo"
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(207) : warning 215: expression has no effect
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(207) : error 001: expected token: ";", but found "]"
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(207) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Usuario\Desktop\Server 0.3\gamemodes\RPG-v1.0.pwn(207) : fatal error 107: too many error messages on one line
AI da Esses Erros para MIM Voзe pode Me Ajudar


Re: [DUVIDA]Sobre Posts - [H]unter - 15.02.2010

й so vocк montar ta perfeito o codigo