GTA Közösség - A magyar GTA fórum
San Andreas Multiplayer (SA-MP) => SA-MP: Szerverfejlesztés => Segítségkérés => A témát indította: OG_Loc ™ - 2012. január 27. - 16:21:01
-
Hello. Angol sampforum on találtam egy NPC készítõ Scriptet készítettem vele 1 et és csak a .rec file meg a npcmodes be való pwn t tette a scriptfilesbe és ahoz hogy tudnám megcsinálni a scrtiptjét? ez lenne az elsõ npc m szal nem non vágom ezt olvasta megy leírást is de az kocsishoz írta enyim meg nem az köszönöm elõre is!
-
Ebbe benen van,hogy mi a scriptje a NPC-nek
http://forum.sa-mp.com/showthread.php?t=112023
tessék.
-
---NEM IDE AKARTAM!----
Kérem egy admin törölje!
-
Beteszed egy scriptbe és azt a filterscripts mappába:
[pawn]#include <a_samp>
public OnFilterScriptInit()
{
ConnectNPC(\"NPC_NEVE\",\"npcmodes_script_neve\");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerSpawn(playerid)
{
if(IsPlayerNPC(playerid))
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
if(!strcmp(name, \"NPC_NEVE\", true))
{
// skin stb.
}
return 1;
}
return 1
}[/pawn]
Ez gyalogos NPC esetén jó.