28.07.2015, 04:19
(
Последний раз редактировалось Lуs; 28.07.2015 в 07:17.
)
Como crio BOTs ou NPCs de ajudas que fica em um local que quando o player for atй o bot apertar " F " ai abre uma janelinha de ajuda ?
Nгo entendo, vocкs postam a lуgica inteira do sistema e perguntam como fazer, wtf? Й sу seguir os passos que vocк mesmo citou e procurar as funзхes / callbacks que se referem a cada passo.
https://sampwiki.blast.hk/wiki/CreateActor https://sampwiki.blast.hk/wiki/Create3DTextLabel https://sampwiki.blast.hk/wiki/OnPlayerKeyStateChange https://sampwiki.blast.hk/wiki/IsPlayerInRangeOfPoint https://sampwiki.blast.hk/wiki/ShowPlayerDialog |
new MyActor;
public OnGameModeInit()
{
MyActor = CreateActor(179, 316.1, -134.0, 999.6, 90.0); // Actor as a salesperson in Ammunation.
if(IsValidActor(MyActor))
{
new Text3D:label = Create3DTextLabel("Hello, I am new here!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label, MyActor, 0.0, 0.0, 0.7);
}
return 1;
}