Jump to content

mastabenja

Members
  • Posts

    60
  • Joined

  • Last visited

Nexus Mods Profile

About mastabenja

mastabenja's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. i did once look into the tent placement... It takes some time to figure the script out but the basic idea doesnt look to comlicated
  2. ya hit me up once you are open for requests again. I think i could use one for LOHS (nothing big, just a small one for the nexus page) oh s#*!, just watched your trailers,,, I better get some more work done befor i get one
  3. if you watched gophers videos for mod organizer and u still ahve no clue i think nobody here can help you... good luck
  4. ok so. As you cant set the value of an ActorBase you need to work around it. CH does this by adding a quest ("CH") with the "Horse" alias that runs a script (chhorsealiasscript.psc) that then manipulates the stamina value acording to a global set in the MCM of convenient horses. If im right you should be able to add a quest to the ActorBase for horses (by using the horse faction maybe) that does a similar stamina modification. If done right this would affect all horses i think. Need to figre out how exactly you can split them up in breeds thats my last idea^^
  5. ok i have no f***ing idea of how to do it the right way... The ActorBase functions are so limited even with skse. You might have to look in another direction to do this. Check Convenient horses for its option to set the stamina bonus of horses and use a similar method? But im not sure if this will only affect the horses owned by the player. so many people doing horse races right now oO Edit: Your Whitrun horses dont have array brackets... probably not important ActorBase[] Property MarkarthHorses Auto ActorBase Property WhiterunHorse Auto
  6. MarkarthHorses[mIndex].SetActorValue("Stamina", ((MarkarthHorses[mIndex].GetActorValue("Stamina") as int) + 75.0))if you did this allready (use "as int"!!!) then you should try and print out the actor value in game by using something like this in some modified script that compiles and has your array working (make it work^^) int _whatEver = MarkarthHorses[mIndex].GetActorValue("Stamina") as int Debug.Notification("stamina value: " + _whatEver) I didnt work with arrays in papyrus yet but that looks strange. Are you sure that array is filled correctly? Well if your array isnt working i cant help you sorry :/
  7. he also has an ENB series if you want to use ENBs (search his playlists)
  8. hm dunno try and error like allways^^
  9. int mIndex =1 Event OnEffectStart(Actor MArkarthHorses, Actor MArkarthHorsesActor) While mIndex float currentValue = MArkarthHorses.GetActorValue("Stamina") int _currentValue = MArkarthHorses.GetActorValue("Stamina") as int int newValue = _currentValue + 75 MarkarthHorses.SetActorValue("Stamina", newValue) EndWhile EndEvent I didnt test it ingame since i dont have all actors set up and dont have your array etc. and the while is obviously just a permanent loop (DONT USE THAT INGAME PLEASE). Compiles just fine for me in CK. Logic should be right i think this should be working as well and its close to your line Int mIndex = MarkarthHorses.Length While mIndex MarkarthHorses[mIndex].SetActorValue("Stamina", ((MarkarthHorses[mIndex].GetActorValue("Stamina") as int) + 75)) EndWhileso i thnk your basic problem is that .GetActorValue and similar function return _floats_ floats can not be used as Int (numeric values). You have to use http://www.creationkit.com/Cast_Reference#Cast_to_Int "as Int". Or if you are fiddeling with globals you can use myGlobal.GetValueInt() (its an easy wai to get the game time for example Int _gameHour = GameHour.GetValueInt()) also notice: GetActorValue returns the CURRENT value of in this case stamina while SetActorValue set the base value. This eans if your targeted horse currently is drained of stamina (for what ever reason) you might get unintended value with this. Use GetBaseActorValue instead if you want (i guess thats waht you want to do). There is also ModActorValue (or simillar) that sets the base and the current value at the same time afaik (so your set base get "filled up") let me know if it works. cant setup a simple mod to test right now. Im not on my desk Edit: on second thought: your array may just suck and it has nothing to do with all the aboth XD
  10. i would say start with something small that you think is missing in the game/you want for your self and go from there. I started with this http://www.nexusmods.com/skyrim/mods/56017/? because i could not find any mod that did it. It took me way to much time for how simple it is but i learned a lot. Youst google what ever you need to know if you get stuck and you will find more and good resources along the way. I think this guy has some great vids https://www.youtube.com/user/DARKF0X127/playlists I watched his script series probably 10 times for all the little things i couldnt figure out on my own. But thats because im more into scripting and not so much into moddeling. Just figure out what you wnat to do (a concrete idea). You can also do a "dummy" mod first. Lets say a mod that adds a teleport stone to whiterun that teleports you to riften or what ever with a little menu maybe? if you are completly "noob" watch this quick video first (more on the moddeling site)
  11. yet contet created by said site/authors that originate from said site is hosed on the nexus and creates tons of traffic... nvm dont want to gte all political here^^
  12. wait why are we not allowed to talk about "that site"? because reasons or what?
  13. yes ofc a script should be able to do that ass well. But its allways good to check out all the options first^^
  14. did you try setting the characters fire resistance over 100? i have no idea if this mechanic is in the game but hey you can try it^^
  15. SO as far as the path goes. If you allready have your new nif (the chest that looks like a basket or whatever) You can put that nif in skyrim/data/meshes/MYMOD (mymod would be your mods mesh folder... call it what you want). In the CK you can then place a normal Chest and edit it to use the model you just created (the basked looking one). Ofc i cant tell if your nif is ok and working without seeing it :wink: You dont have to unpack the files in the skyrim/data folder. I keep them all in "d:/Output" edit them there and then copy what ever file i want to use in the CK to the skyrim/data/... folder. Its pretty clean if you do that Im not sure if you can just set tha model ath in the CK to a "non container" model or if you actually need to make a container that looks like something else by editing it in nifskope. But even if that should not be a big problem Ok i usually do not build interiros or so in the CK but i tried it out and you can jzst playe a normal chesk like you would norally do. Rightclick it in the Cell view windo - Edit - Edit Base. Ther you can change the model to a basket or what ever. I guess you should Duplicate the base object first and rename it so when you change the model only your chest changes and not all chest in the game that use the same base object... what ever you know the drill^^
×
×
  • Create New...