SA-MP Forums Archive
[AJUDA] Erro com includes. - 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] Erro com includes. (/showthread.php?tid=293158)



[AJUDA] Erro com includes. - Rafael_Loss - 27.10.2011

Baixei um Thug Life 2.6 para estudo nй. Entгo, fui compilar o GM sem nenhuma mudanзa e ficou dando error na linha 25.
Код:
C:\Users\everton\Desktop\GodFather\Thug Life 2.6\gamemodes\ThugLife26.pwn(25) : fatal error 100: cannot read from file: "morphinc"
A include estб certinha na pasta. Alguйm tem ideia do que pode ser?


Re: [AJUDA] Erro com includes. - Miqueias Barros - 27.10.2011

morphinc:
pawn Код:
new pdistance = 1;
forward NameTimer();
Float:GetPointDistanceToPointExMorph(Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2)
{
new Float:x, Float:y, Float:z;
x = x1-x2;
y = y1-y2;
z = z1-z2;
return floatsqroot(x*x+y*y+z*z);
}
stock SetPDistance(dista)
{
pdistance = dista;
}
stock GetPDistance()
{
return pdistance;
}
stock EnableDistancedNameTag(delay)
{
SetTimer("NameTimer",delay,1);
}
forward NameTimer();
public NameTimer()
    {
    for(new i = 0;i < MAX_PLAYERS;i++)
    {
    if(IsPlayerConnected(i))
    {
    for(new q = 0;q < MAX_PLAYERS;q++)
    {
    if(IsPlayerConnected(q))
    {
    new Float:p1x;
    new Float:p1y;
    new Float:p1z;
    new Float:p2x;
    new Float:p2y;
    new Float:p2z;
    if(IsPlayerConnected(i) && IsPlayerConnected(q))
    {
    GetPlayerPos(i,p1x,p1y,p1z);
  GetPlayerPos(q,p2x,p2y,p2z);
    if(GetPointDistanceToPointExMorph(p1x,p1y,p1z,p2x,p2y,p2z) < pdistance)
        {
      ShowPlayerNameTagForPlayer(i,q,1);
      }
    else
        {
        ShowPlayerNameTagForPlayer(i,q,0);
        }
    }}}}}
}
Peguei em um tуpico inglкs..


Re: [AJUDA] Erro com includes. - Rafael_Loss - 27.10.2011

Continua com erro mano


Re: [AJUDA] Erro com includes. - ViniBorn - 27.10.2011

Й sу colocar isso que o Miqueias postou em um bloco de notas , salvar com o seguinte nome - morphinc.inc ,
e depois colocar na pasta pawno/includes


Re: [AJUDA] Erro com includes. - Miqueias Barros - 27.10.2011

Ou para ele num ir buscar a antiga include vocк coloca na pasta include(nгo a do pawno/includes), depois no topo do gm coloca

pawn Код:
#include ../include/morphinc



Re: [AJUDA] Erro com includes. - [O.z]Caroline - 27.10.2011

ou vocк pode apagar a "#define <morphinc>" e botar direto no final do GM:

pawn Код:
new pdistance = 1;
forward NameTimer();
Float:GetPointDistanceToPointExMorph(Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2)
{
new Float:x, Float:y, Float:z;
x = x1-x2;
y = y1-y2;
z = z1-z2;
return floatsqroot(x*x+y*y+z*z);
}
stock SetPDistance(dista)
{
pdistance = dista;
}
stock GetPDistance()
{
return pdistance;
}
stock EnableDistancedNameTag(delay)
{
SetTimer("NameTimer",delay,1);
}
forward NameTimer();
public NameTimer()
    {
    for(new i = 0;i < MAX_PLAYERS;i++)
    {
    if(IsPlayerConnected(i))
    {
    for(new q = 0;q < MAX_PLAYERS;q++)
    {
    if(IsPlayerConnected(q))
    {
    new Float:p1x;
    new Float:p1y;
    new Float:p1z;
    new Float:p2x;
    new Float:p2y;
    new Float:p2z;
    if(IsPlayerConnected(i) && IsPlayerConnected(q))
    {
    GetPlayerPos(i,p1x,p1y,p1z);
  GetPlayerPos(q,p2x,p2y,p2z);
    if(GetPointDistanceToPointExMorph(p1x,p1y,p1z,p2x,p2y,p2z) < pdistance)
        {
      ShowPlayerNameTagForPlayer(i,q,1);
      }
    else
        {
        ShowPlayerNameTagForPlayer(i,q,0);
        }
    }}}}}
}



Re: [AJUDA] Erro com includes. - TiagoPS - 27.10.2011

Aqui embaixo


Re: [AJUDA] Erro com includes. - [O.z]Caroline - 27.10.2011

usa o Morphinc do TiagoPS, ela jб estб em forma de inc.


Re: [AJUDA] Erro com includes. - Rafael_Loss - 27.10.2011

Nada funcionou , testei mais gms, todos estгo com bug em includes.. Baixei do homehots!

Edit: Serб que tem alguma coisa a ver com incompatibilidade de windows 7? D:


Re: [AJUDA] Erro com includes. - Lуs - 27.10.2011

Quote:
Originally Posted by Rafael_Loss
Посмотреть сообщение
Nada funcionou , testei mais gms, todos estгo com bug em includes.. Baixei do homehots!

Edit: Serб que tem alguma coisa a ver com incompatibilidade de windows 7? D:
Verifique se estб usando o pawno correto.