i have a ground spawn unearth soil i set name to not display and no hand or command icon showing, just like on live
when i accept the quest to harvest them i used the setspawn lua command to turn on the the spaen so i can harvest
Code: Select all
function Accepted(Quest, QuestGiver, Player)
FaceTarget(QuestGiver, Player)
conversation = CreateConversation()
Say(QuestGiver, "This is me talking try to set spawn to acive")
SpawnSet(1950116, "show_name", 1)
SpawnSet(1950116, "show_command_icon", 1)
SpawnSet(1950116, "display_hand_icon", 1)
PlayFlavor(QuestGiver, "voiceover/english/tutorial_revamp/lieutenant_charlin/qey_adv01_oakmyst/quests/charlin/charlin008a.mp3", "", "", 717032559, 738942880, Player)
AddConversationOption(conversation, "You're welcome.")
StartConversation(conversation, QuestGiver, Player, "It may be nothing, but it may help us. Thanks for doing this.")
endbut if i use the /spawn set show_name 1
/spawn set show_comamnd_icon 1
/spawn set display_hand_icon 1
the ground spawns activate and show the name and i am able to harvest from them
is there a different place i should be using the spawnset lua command or maybe i using it in the wrong fashiom