31.01.2015, 17:13
(
Последний раз редактировалось DukeVega; 31.01.2015 в 19:08.
)
Community peeps,
Thankyou again for your assistance, ... so today I built my first working BOT!! wooo i managed to get him to launch in game and do his little routine. *slow clap*
What I have done is built it on a filterscript
Next job was to change the BOT skin so i tried to do it like this...
What happens though i get the error error 017: undefined symbol "Setplayerskin"
Thankyou again for your assistance, ... so today I built my first working BOT!! wooo i managed to get him to launch in game and do his little routine. *slow clap*
What I have done is built it on a filterscript
Next job was to change the BOT skin so i tried to do it like this...
Код:
// This is a comment // uncomment the line below if you want to write a filterscript //#define FILTERSCRIPT #include <a_samp> #if defined FILTERSCRIPT public OnFilterScriptInit() { print("\n--------------------------------------"); print("Fallout Apocalypse RP - BOTS"); print("--------------------------------------\n"); return 1; } public OnFilterScriptExit() { return 1; } #endif public OnFilterScriptInit() { print("FalloutSA"); ConnectNPC("Civilian","nvciv1"); Setplayerskin(playerid, 162); return 1; }
What happens though i get the error error 017: undefined symbol "Setplayerskin"