SA-MP Forums Archive
[AJUDA]Sobre mapas, polнcia, etc - 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: [AJUDA]Sobre mapas, polнcia, etc (/showthread.php?tid=189983)



[AJUDA]Sobre mapas, polнcia, etc - steki. - 13.11.2010

tenho algumas dъvidas.

1є Eu posso fazer o mapa em amx como se fosse um filterscript? Sу pra nгo misturar com o gamemode.

2є alguem conhece um bom tutorial pra fazer o carro sу para aquela org?

3є Como crio orgs?

OBS** Uso GodFather


Re: [AJUDA]Sobre mapas, polнcia, etc - [Ips]Guh - 13.11.2010

Respotas :
1°= vc faiz assim,vai no mta faiz o mapa,dae converte o codigo no converterffs ( acho q e esse o nome do site ),dae dps vc pega o code,exemplo : AddStaticVehicleEx e as posiзoes e coloca em na public : public OnGameModeInit()

2° = https://sampforum.blast.hk/showthread.php?tid=152457

3° = https://sampforum.blast.hk/showthread.php?tid=182101

Se nao tiver entendido fala ae..


Re: [AJUDA]Sobre mapas, polнcia, etc - steki. - 13.11.2010

Nгo, tipo. Eu to perguntandona 1є

Se, como agente coloca os carros no OnGameModeInit no GM, eu posso fazer um novo fs, colocar os objs lб e adicionar no server.cfg?


Re: [AJUDA]Sobre mapas, polнcia, etc - zSuYaNw - 13.11.2010

Quote:
Originally Posted by Luнs Miki
Посмотреть сообщение
Nгo, tipo. Eu to perguntandona 1є

Se, como agente coloca os carros no OnGameModeInit no GM, eu posso fazer um novo fs, colocar os objs lб e adicionar no server.cfg?
sim, faz este fs.
pawn Код:
#include <a_samp>

public OnFilterScriptIni()
{
   //Objectos aqui!!!!!!!!!!!  
    return 1;
}



Re: [AJUDA]Sobre mapas, polнcia, etc - steki. - 13.11.2010

Quote:
Originally Posted by [Full]Garfield[XDB]
Посмотреть сообщение
sim, faz este fs.
pawn Код:
#include <a_samp>

public OnFilterScriptIni()
{
   //Objectos aqui!!!!!!!!!!!  
    return 1;
}
Estб errado.

O Correto seria:

pawn Код:
#include <a_samp>
public OnFilterScriptInit()
{  
      /* Objetos */
      return 1;
}



Re: [AJUDA]Sobre mapas, polнcia, etc - Gustavob - 13.11.2010

LOL mesma coisa, ele sу esqueceu um "t" '-'

de qualquer forma, ainda ta fail

falta um #define FILTERSCRIPT em ambos


Re: [AJUDA]Sobre mapas, polнcia, etc - steki. - 13.11.2010

EPIC FAIL ._.

ENTГO seria

pawn Код:
#define FILTERSCRIPT
#include <a_samp>
public OnFilterScriptInit()
{        
       /* Objetos */    
       return 1;
}
falta algo?


Re: [AJUDA]Sobre mapas, polнcia, etc - zSuYaNw - 14.11.2010

Quote:
Originally Posted by Luнs Miki
Посмотреть сообщение
EPIC FAIL ._.

ENTГO seria

pawn Код:
#define FILTERSCRIPT
#include <a_samp>
public OnFilterScriptInit()
{        
       /* Objetos */    
       return 1;
}
falta algo?
sim!

pawn Код:
#define FILTERSCRIPT
#include <a_samp>
public OnFilterScriptInit()
{        
       /* Objetos */    
       return 1;
}
public OnFilterScriptExit()
{
       return 1;
}
#endif



Re: [AJUDA]Sobre mapas, polнcia, etc - steki. - 14.11.2010

Entгo. A Liзгo que aprendemos aqui й.

"Crie um novo arquivo no pawn e bote suas tralhas lб, descomenta o Filterscript e coloque no server.cfg. Pronto. Aн nгo precisa nada mais, certo?"