Jump to content
  • 0

Ajutor comanda /goto


rpg

Question

Salut all!Am un gm bunicel,cumparat cu 7 E,si am o problema la comanda /goto.Nu stiu de ce mereu se teleporteaza la id 1,si nu la cine trebuie.Uitati codul:

 
 
/*==============================================================================
Comanda: /goto
==============================================================================*/
CMD:goto(playerid,params[])
{
    if(IsPlayerConnected(playerid))
    {
   if(gPlayerLogged[playerid] != 0)
   {
       new Float:PosX, Float:PosY, Float:PosZ, Float:PosIDX, Float:PosIDY, Float:PosIDZ, string[256], sendername[MAX_PLAYER_NAME], giveplayername[MAX_PLAYER_NAME], ID;
       if(sscanf(params, "u", ID)) return SendClientMessage(playerid, -1, ""PORTOCALIU"Scrie: "ALBASTRU2"/goto [Player ID]");
GetPlayerName(playerid, sendername, sizeof(sendername));
GetPlayerName(ID, giveplayername, sizeof(giveplayername));
if(IsPlayerConnected(ID))
{
   if(ID != INVALID_PLAYER_ID)
   {
if (PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pHelper] >= 1)
{
GetPlayerPos(ID, PosIDX, PosIDY, PosIDZ);
if (GetPlayerState(playerid) == 2 || GetPlayerState(playerid) == 3)
{
new tmpcar = GetPlayerVehicleID(playerid);
SetVehiclePos(tmpcar, PosIDX, PosIDY + 4, PosIDZ);
TelePos[playerid][0] = 0.0; TelePos[playerid][1] = 0.0;
LinkVehicleToInterior(tmpcar, GetPlayerInterior(ID));
SetVehicleVirtualWorld(tmpcar, GetPlayerVirtualWorld(ID));
SetPlayerInterior(playerid, GetPlayerInterior(ID));
SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(ID));
 
}
else
{
SetPlayerPos(playerid, PosIDX, PosIDY + 2, PosIDZ);
SetPlayerInterior(playerid, GetPlayerInterior(ID));
SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(ID));
}
format(string, 256, ""GRI3"You have been teleported to: %s", giveplayername);
SendClientMessage(playerid, -1, string);
format(string, 256, ""PORTOCALIU"Admin Warning: "GALBEN"%s a folosit comanda "VERDE"/goto "GALBEN"si s-a teleportat la %s", sendername, giveplayername);
AdminsMessage(-1, string);
format(string, 256, ""PORTOCALIU"Helper Warning: "GALBEN"%s a folosit comanda "VERDE"/goto "GALBEN"si s-a teleportat la %s", sendername, giveplayername);
HeadHelpersMessage(-1, string);
GetPlayerPos(playerid, PosX, PosY, PosZ);
GBPosX[playerid] = PosX;
GBPosY[playerid] = PosY;
GBPosZ[playerid] = PosZ;
}
else return SendClientMessage(playerid, -1, ""ALBASTRU2"Nu ai autorizatia sa folosesti aceasta comanda !");
}
}
else return SendClientMessage(playerid, -1, ""GRI3"Acest player nu este conectat");
}
else return SendClientMessage(playerid, -1, ""ALBASTRU2"Nu esti conectat !");
}
return 1;
}
A,warning-uri nu am deloc in gm.
 
Ce nu va pare in regula?Va rog sa ma ajutati cat mai repede!

 

Edited by rpg

giphy.gif.418e22646746f7065f229917bd9fae15.gif

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.