Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"Commanding" NPC?
Author Message
x77x
Master
**

Posts: 488
Likes Given: 0
Likes Received: 15 in 15 posts
Joined: Mar 2012
Reputation: -4



Post: #1
"Commanding" NPC?
im trying to have players be able to command npcs
they must be in the same army, and be a higher level

Code:
[FUNCTION f_attack]
OBJ.SAY Yes sir!
OBJ.ATTACK <ARGO>
//OBJ.SAY <OBJ> will now attack <ARGO>
RETURN 1

[SPEECH s_army_commands]
ON=*kill*
ON=*attack*
    IF STRMATCH("<SRC.TAG.ARMY>","<TAG.ARMY>") && (<LEVEL> < <SRC.LEVEL>)
        OBJ <UID>
        TARGETF f_attack
    ELSE
        SAY I do not take orders from you

prob is, it only works for about 2 seconds...
memory item?

what about making the npc a pet and using maxfollowers?
then maybe a timer, so they will eventually go untame =)

realistically, the only commands i want to use are kill, follow, stay

Dragons of Time 2000-2020
http://dragonsoftime.com
10-25-2015 02:36 PM
Find all posts by this user Like Post Quote this message in a reply
rastrero
Master
**

Posts: 250
Likes Given: 41
Likes Received: 28 in 24 posts
Joined: Jan 2016
Reputation: 3



Post: #2
RE: "Commanding" NPC?
try this.

[FUNCTION f_attack2]
SAY Yes sir!
ATTACK <ARGO>

[SPEECH s_army_commands]
ON=*kill*
ON=*attack*
IF (STRMATCH("<SRC.TAG.ARMY>","<TAG.ARMY>") && (<LEVEL> < <SRC.LEVEL>))
OBJ <UID>
TARGETF f_attack2
ELSE
SAY I do not take orders from you
return 1
endif

if it dosnt work. try to use
[FUNCTION f_attack2]
SAY Yes sir!
tryserv ATTACK <ARGO>


sorry4 my eng.
(This post was last modified: 01-13-2016 04:00 PM by rastrero.)
01-13-2016 03:27 PM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)