entrance.inc - Crie entradas facilmente -
1sbedx - 07.05.2018
Descriзгo:
Com esta include, vocк pode criar entradas com rapidez e facilidade.
Funзхes:
PHP код:
Entrance:CreateEntrance(name[], Float:out_x, Float:out_y, Float:out_z, Float:out_a, out_i, out_v, Float:in_x, Float:in_y, Float:in_z, Float:in_a, in_i, in_v)
- Cria uma entrada/saнda.
PHP код:
GetEntranceName(Entrance:index, name[], length = sizeof(name))
- Obtйm o nome da entrada.
PHP код:
IsPlayerInRangeOfEntrance(playerid, Entrance:index, Float:range = 3.0)
- Verifica se o jogador estб perto de uma entrada.
PHP код:
IsPlayerInEntrance(playerid, Entrance:index, Float:range = 20.0)
- Verifica se o jogador estб dentro de uma entrada.
PHP код:
GetPlayerClosestEntranceID(playerid, Float:range = 3.0)
- Obtйm a entrada mais prуxima do jogador.
Exemplo:
PHP код:
new Entrance:CityHall;
public OnFilterScriptInit()
{
CityHall = CreateEntrance("Los Santos City Hall", 1481.0654, -1771.8755, 18.7958, 356.3838, 0, 0, 390.1687, 173.8072, 1008.3828, 90.0000, 3, 69);
return 1;
}
public OnPlayerEnterEntrance(playerid, Entrance:entranceid)
{
if (entranceid == CityHall)
{
SendClientMessage(playerid, -1, "Bem-vindo а Prefeitura.");
}
return 1;
}
public OnPlayerExitEntrance(playerid, Entrance:entranceid)
{
if (entranceid == CityHall)
{
SendClientMessage(playerid, -1, "Vocк saiu da prefeitura.");
}
return 1;
}
Pastebin
Re: entrance.inc - Crie entradas facilmente -
Cauezin - 07.05.2018
Vai ajudar muito, vlw men <3
Re: entrance.inc - Crie entradas facilmente -
AllanSG - 07.05.2018
Nice, vai ajuda bastante gente.
Re: entrance.inc - Crie entradas facilmente -
Ermanhaut - 07.05.2018
Bela realease.
Acho que um bom update seria criar as entradas in-game e salvar elas com SQLite ou MySQL.
Re: entrance.inc - Crie entradas facilmente -
SpikeCompiler - 07.05.2018
Muito bom! Irei utilizar com certeza, uma dica: Atualize o tуpico e explique as funзхes por gentileza! +REP
Re: entrance.inc - Crie entradas facilmente -
LordMafia - 09.05.2018
Muito Obrigado me ajudou muito !!