31.01.2015, 22:47
Hello again,
I am just learning how to make simple Bot's, so far I have them spawning in game and working.
My problem right now is that the Bots are all using the same skins.
I am sure it is because i havnt split up the script properly, as seen below.
im sure its obvious to anyone who knows what they are doing, but for me sorry its not so easy.
Please let me know whats wrong with this script,
Much love
Duke <3
I am just learning how to make simple Bot's, so far I have them spawning in game and working.
My problem right now is that the Bots are all using the same skins.
I am sure it is because i havnt split up the script properly, as seen below.
im sure its obvious to anyone who knows what they are doing, but for me sorry its not so easy.
Please let me know whats wrong with this script,
Much love
Duke <3
Код:
public OnFilterScriptInit() { print("\n--------------------------------------"); print(" Fallout RP New Vegas BOTS "); print("--------------------------------------\n"); return 1; } #endif public OnPlayerSpawn(playerid) { print("BOTS"); ConnectNPC("Civilian1","nvciv1"); SetPlayerSkin(playerid, 1); ConnectNPC("Civilian2","nvciv2diner"); SetPlayerSkin(playerid, 11); ConnectNPC("Civilian3","nvciv3"); SetPlayerSkin(playerid, 32); ConnectNPC("Civilian4","nvciv4"); SetPlayerSkin(playerid, 93); ConnectNPC("Civilian5","nvbouncer"); SetPlayerSkin(playerid, 30); }