View Single Post
  #6  
Old 02-17-2003, 06:56 AM
Hardy's Avatar
Hardy
Dragon
 
Join Date: Feb 2002
Location: GI, NE
Posts: 924
Default Re: Question

Quote:
Originally Posted by SponkeyMonkey
NPC_SCRIPT 124478{
TRIGGER_TEXT:Hail:{
SAY:Greetings %CHARNAME%, Would you like you like to go PvP [yes]
}
}
TRIGGER_TEXT:yes:{
#pvp on %CHARNAME%
SAY:Have a Safe Journey %CHARNAME%
}
}
I have yet to mess with the PvP commands, I don't think you need the "%CHARNAME%" in the command though as the NPC targets you once hailed. Also you don't use #pvp

Code:
NPC_SCRIPT 124478{ 
TRIGGER_TEXT:Hail:{ 
SAY:Greetings %CHARNAME%, Would you like you like to go PvP [yes] 
} 
} 
TRIGGER_TEXT:yes:{ 
SET_PVP
SAY:Have a Safe Journey %CHARNAME% 
} 
}
Please correct me if I am wrong

Quote:
Originally Posted by Damilis
Where can i get my hands on a quest making utility? all the links on the forums are dead.
There are good tutorials on how to make quests, your quest utility is a notepad Just run a search in the forums, you will find one
__________________
Punisher Mod
Diablo 2: LOD 1.09 and 1.10
Reply With Quote