Staark92 Posted July 19, 2017 Share Posted July 19, 2017 I am using More Perks By Dree (http://www.nexusmods.com/newvegas/mods/35979/?) and have chosen the Friend of the Friendless Perk. at first it was working fine but now i am unable to feed my little Deathclaw, the option in his speech menu just doesn't show up anymore. done a little poking around in the .esm and have found a list of commands for the perk:Player.AddNote DreePerkFriendlessNOTE ;**** Add the food-list note to player's inventory showMap OldOlneyMapMarker 1 Player.PlaceAtMe DreePerkFriendClaw01NPC 1 ;**** Spawn the baby deathclaw ClearFactionPlayerEnemyFlag CreatureHitDeathClaw ; ***** Reset the variables ClearFactionPlayerEnemyFlag DeathclawFaction setAlly playerFaction CreatureHitDeathClaw 1 1 setAlly playerFaction DeathclawFaction 1 1 Set DreePerkVariableQuest.FriendAI to 0 Set DreePerkVariableQuest.GotoCemetry to 0 Set DreePerkVariableQuest.FeedTimer to 0 Set DreePerkVariableQuest.FoodConsumption to 0 Set DreePerkVariableQuest.FriendHired to 1 Set DreePerkVariableQuest.FriendAlive to 1 if (VNPCFollowers.bAchievement1 == 0) ; ***** Add Achievement Ol Buddy Ol Pal set VNPCFollowers.bAchievement1 to 1 AddAchievement 4 endifso I am trying to use the "Set DreePerkVariableQuest.FoodConsumption to 0" command to see if it changes anything, but when i type it in to the console I get:SCRIPTS: script 'SysWindowCompileAndRun', line 1: Unknown variable or function 'feedtimer' SCRIPTS: script 'SysWindowCompileAndRun', line 1: Missing variable name in set commandCan anyone point me in the right direction with how to use this command any maybe how to fix the feeding issue? Link to comment Share on other sites More sharing options...
Ladez Posted July 19, 2017 Share Posted July 19, 2017 Editor IDs (in this case: "DreePerkVariableQuest") aren't used in the game, to achieve the same thing in the console you have to use the form ID of the object the editor ID refers to. Here's an example (note the double quotes:)Set "xx000ADE".FoodConsumption to 0Disclaimer: I have no experience with the mod and thus have no idea what effect this will have. Link to comment Share on other sites More sharing options...
Staark92 Posted July 19, 2017 Author Share Posted July 19, 2017 (edited) Thank you. I had already tried using the form ID through trial and erroring it but didn't realise you needed to use quote marks around the ID :pinch: EDIT: Unfortunately it didn't solve my problem, Damn. Edited July 19, 2017 by Staark92 Link to comment Share on other sites More sharing options...
Recommended Posts