08/05/2023 13:57
(26/05/2022 13:14)ZiringueJhonsom Escreveu: o erro citado acima era apenas, as configurações do YSF, não havia includes desatualizadas mas mesmo, assim obrigado pela resposta.
Porem apos resolver o error me deparei com outro ate então sem solução.
Ao tenta usar a função: SetPlayerCheckpointGPS(playerid,1183.4017,-1297.4088,14.2143,-1,true); Ou GPS_SetPlayerCheckpoint(playerid,-2199.3972,-2310.8535,30.4528); da Include ValksGPS
Dentro do jogo e exibido a mensagem de erro Error: Code 4.
Que ocorre na seguinte forward:
Código:forward AssignatePlayerPath(playerid, Float:X, Float:Y, Float:Z);
public AssignatePlayerPath(playerid, Float:X, Float:Y, Float:Z)
{
new Float:x, Float:y, Float:z, MapNode:start, MapNode:target;
GetPlayerPos(playerid, x, y, z);
if((GDBP(X, Y, 0.0, x, y, 0.0) <= 7.5))
{
ForcePlayerEndLastRoute(playerid);
return 1;
}
if (GetClosestMapNodeToPoint(x, y, z, start) != 0) return print("Error Code 1.");
if (GetClosestMapNodeToPoint(X, Y, Z, target)) return print("Error: Code 2");
if (FindPathThreaded(start, target, "OnPathFound", "i", playerid))
{
SendClientMessage(playerid, -1, "Error: Code 4.");
return 1;
}
return 1;
}
Aonde o if /\ que retorna o erro se refere a função abaixo \/Código:if (FindPathThreaded(start, target, "OnPathFound", "i", playerid))
Código:public OnPathFound(Path:pathid, playerid)
{
if(!IsValidPath(pathid)) return SendClientMessage(playerid, -1, "Error: Code 5.");
DestroyRoutes(playerid);
new size, Float:length;
GetPathSize(pathid, size);
GetPathLength(pathid, length);
if(size == 1)
{
ForcePlayerEndLastRoute(playerid);
return /*SendClientMessage(playerid, -1, "Has llegado a tu destino.");*/ 1;
}
new MapNode:nodeid, index, Float:lastx, Float:lasty,Float:lastz;
GetPlayerPos(playerid, lastx, lasty, lastz);
GetClosestMapNodeToPoint(lastx, lasty, lastz, nodeid);
GetMapNodePos(nodeid, lastx, lasty, lastz);
new _max = MAX_DOTS;
if(MAX_DOTS > size) _max = size;
new Float:X,Float:Y,Float:Z;
for(new i = 0; i < _max; i++)
{
GetPathNode(pathid, i, nodeid);
GetPathNodeIndex(pathid, nodeid, index);
GetMapNodePos(nodeid, X, Y, Z);
if(i == index) CreateMapRoute(playerid, lastx, lasty, X, Y, ColorsRutePlayerGPS[ PlayerColorGPS[playerid] ]);
lastx = X+0.5;
lasty = Y+0.5;
}
return 1;
}
OBS: todos plugins e includes necessárias estão devidamente atualizadas. segue os links abaixo:
https://github.com/IllidanS4/YSF/releases/tag/v2.2
https://github.com/kristoisberg/samp-gps.../tag/1.4.0
como você conseguiu arrumar o primeiro erro?