[NPC] Grove Street Hooligans ~ Updated V2
#1

Grove Street Hooligans
Code:
(-----------------------------------)
( __  ___     ___ _ _     )
( \ \ / / |__ ___ / __/ | |_ _ _  )
( \ V /| / _/ -_) (__| | _| || | )
(  \_/ |_\__\___|\___|_|\__|\_, | )
(              |__/  )
(   [NPC] Made By V1ceC1ty    )
(                  )
(      Credits To:      )
(     All The SA-MP Team    )
(      wiki.sa-mp.com     )
(        Gappy        )
(-----------------------------------)
• What is it?
Grove Street Hooligans comes with 5 NPC's. The File includes the .rec files, the NPCModes and the .pwn and .amx of a FilterScript. All 3 NPC's walk round a loop of the area, and the other 2 are smoking/drinking together.

• How to use
Each folder has a either a .pwn and .amx or a .rec file which need to be placed into the correct folders where your SA-MP 0.3 Server is located. IT WILL NOT WORK IF NOT DONE CORRECTLY!
Once completed this, "GSH" needs to be placed into your server.cfg filterscripts line.
Join your server and watch the NPC's Walk and talk Exactly how they would in SinglePlayer round Grove Street.

• Screens
• Download
V2, 2 NPC's Re-Recorded to look better.



Reply
#2

cool vice i take it you got bots working in RC6 now? nice Bots BTW
Reply
#3

mabey i used RC5 to test it lol
Reply
#4

Wow, that look really nice, Ill test it out later
Reply
#5

Should work for everyone with the new RC6-2 Server
Reply
#6

this should be nice for RP
Reply
#7

All your NPC works are awesome, keep the good work up dude !
Reply
#8

C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(9) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(10) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(11) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(12) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(13) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(22) : error 017: undefined symbol "IsPlayerNPC"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


6 Errors.



Pls Help
Reply
#9

Quote:
Originally Posted by Z3RO
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(9) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(10) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(11) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(12) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(13) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(22) : error 017: undefined symbol "IsPlayerNPC"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


6 Errors.
Pls Help
pawn Code:
#include <a_npc>
Reply
#10

Good job man !
Reply
#11

Quote:
Originally Posted by Z3RO
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(9) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(10) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(11) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(12) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(13) : error 017: undefined symbol "ConnectNPC"
C:\Users\Remo Rothacher\Desktop\RC 6\filterscripts\GSH.pwn(22) : error 017: undefined symbol "IsPlayerNPC"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


6 Errors.



Pls Help
pawn Код:
#include <a_npc>
and include the a_npc.inc in the includes folder.

Regards, Adil.
Reply
#12

Strange, I loaded this and all the NPC's just got jammed up at my spawn point
Reply
#13

i say this a million times.

make sure the .rec files are in /npcmodes/recordings/

make sure all filterscripts are in the filterscript folder.

make sure all npcmodes are in the npcmodes folder.

make sure there is no registration before spawning script.

make sure you have the right client/server.

this does work 100%
Reply
#14

#include <a_samp>
#include <a_npc>

new Random;

public OnGameModeInit()
{

// NPCS
ConnectNPC("Grove1","grove1");
ConnectNPC("Grove2","grove2");
ConnectNPC("Grove3","grove3");
ConnectNPC("Grove4","grove4");
ConnectNPC("Grove5","grove5");




C:\Users\Zero\Desktop\0.3 RC 7\filterscripts\GSH.pwn(10) : error 017: undefined symbol "ConnectNPC"
C:\Users\Zero\Desktop\0.3 RC 7\filterscripts\GSH.pwn(11) : error 017: undefined symbol "ConnectNPC"
C:\Users\Zero\Desktop\0.3 RC 7\filterscripts\GSH.pwn(12) : error 017: undefined symbol "ConnectNPC"
C:\Users\Zero\Desktop\0.3 RC 7\filterscripts\GSH.pwn(13) : error 017: undefined symbol "ConnectNPC"
C:\Users\Zero\Desktop\0.3 RC 7\filterscripts\GSH.pwn(14) : error 017: undefined symbol "ConnectNPC"
C:\Users\Zero\Desktop\0.3 RC 7\filterscripts\GSH.pwn(23) : error 017: undefined symbol "IsPlayerNPC"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


6 Errors.




INC ?







Reply
#15

Quote:
Originally Posted by Adil_Rahoo
include the a_npc.inc in the includes folder.
Reply
#16

[17:27:00] Incoming connection: 127.0.0.1:54935
[17:27:00] Incoming connection: 127.0.0.1:54936
[17:27:00] Incoming connection: 127.0.0.1:54937
[17:27:00] Incoming connection: 127.0.0.1:54938
[17:27:00] Incoming connection: 127.0.0.1:54939



?
Reply
#17

Quote:
Originally Posted by Z3RO
[17:27:00] Incoming connection: 127.0.0.1:54935
[17:27:00] Incoming connection: 127.0.0.1:54936
[17:27:00] Incoming connection: 127.0.0.1:54937
[17:27:00] Incoming connection: 127.0.0.1:54938
[17:27:00] Incoming connection: 127.0.0.1:54939



?
Increase the maxnpc variable in server.cfg
Reply
#18

Nice job, I find it amazing what people can do in 0.3
Reply
#19

thx nice
Reply
#20

You rock !!!!

-Off Topic-
Sometimes i get banned for Proxy ? why ? and wats Proxy ?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)