Td npc

NightScare

Legend
Legendary
Nov 11, 2005
3,071
225
290
Nottingham
[@Enter123]
#IF
CHECKMAPHUMANCOUNT AC1 = 0
#ACT
goto @Spawn
#ELSEACT
goto @Enter2


ne1 see nething wrong wit that?

If theres No-one on the map AC1 i want it to go to @spawn, if someones on the map i want it to go to @enter2.

just doesnt work, stops and doesnt do nething ><
 

^G0trex

Golden Oldie
Golden Oldie
Nov 7, 2003
1,946
28
135
Bham
Try:

Code:
[@Enter123]
#IF
CHECKMAPHUMANCOUNT AC1 > 0
#ACT
goto @Enter2
#ELSEACT
goto @Spawn
 
Upvote 0