Jump to content

SkyrimThiago

Supporter
  • Posts

    36
  • Joined

  • Last visited

Nexus Mods Profile

About SkyrimThiago

Recent Profile Visitors

146 profile views

SkyrimThiago's Achievements

Enthusiast

Enthusiast (6/14)

  • Dedicated Rare
  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Are you using the right version of the creation kit? It is a long shot but it will not find a lot of things if the version of creation kit is not for your game, example if you are using AE creation kit on LE, I think some issues like this could happen, however I don't know if that is even possible.
  2. I am working on a mod that allow the creation of persistent forms at runtime, as a copy of another form. And I want to copy the scripts from the original form into the new form.
  3. Could you please clarify what are you trying to do?
  4. I am trying to copy the scripts from a form to another, however I am having an issue that the script I want to copy is not appearing, I have the hypothesis that this is because it is an object reference script. I have a misc object I created in CK, with this script attached: It prints a form that it takes as a property when you click on the item in your inventory, mostly to see if the properties are being copied correctly The following code is an attempt of copying the scripts, it is not getting the script I want to copy. It is instead getting only a script I don't want to copy (some kind of base scripts the object have), however I can ignore this script later when I'm getting the actual script auto* virtualMachine = RE::BSScript::Internal::VirtualMachine::GetSingleton(); if (virtualMachine) { auto* handlePolicy = virtualMachine->GetObjectHandlePolicy(); auto* bindPolicy = virtualMachine->GetObjectBindPolicy(); if (handlePolicy && bindPolicy) { auto baseHandler = handlePolicy->GetHandleForObject(baseForm->GetFormType(), baseForm); auto newHandler = handlePolicy->GetHandleForObject(newForm->GetFormType(), newForm); print("form", baseForm->GetName()); if (baseHandler != handlePolicy->EmptyHandle() && newHandler != handlePolicy->EmptyHandle()) { auto baseHandlerScripts = virtualMachine->attachedScripts.find(baseHandler); if (baseHandlerScripts != virtualMachine->attachedScripts.end()) { auto* scripts = &(*baseHandlerScripts).second; auto scriptNumber = scripts->size(); for (uint32_t i = 0; i < scriptNumber; ++i) { auto script = (*scripts)[i].get(); auto ptr = new RE::BSTSmartPointer(script); bindPolicy->BindObject(*ptr, newHandler); print("script", script->type->GetName()); } } } } } Both newForm and baseForm are RE::TESObjectMISC here is the code for the print function, it is mostly for debugging so i did not put much thought into that I have also tried doing this but no success auto baseHandler = handlePolicy->GetHandleForObject(RE::FormType::Reference, baseForm); auto newHandler = handlePolicy->GetHandleForObject(RE::FormType::Reference, newForm); If I find a solution to this ill post here, but maybe someone is able to help me.
  5. Here is what you could do, you could create a misc item with your potion model, and attach this script to it: You should fill the MySpell property with a new spell: self fire and forget uncheck auto calculate set the spell cost to 0 add any number of potion magic effects, and configure them properly When the player clicks on this magic item he will get the potion effect but the item will not be consumed. The main issue with this approach is that your potion will be on the Misc item tab.
  6. Link: https://thiago099.github.io/bbcode-papyrus-coloring/ Source code: https://github.com/Thiago099/bbcode-papyrus-coloring You can paste or write your papyrus code on the left and it will appear with the bbcode coloring on the right. Here is an example: Here is how it looks like:
  7. i can do the model. but i dont know how to animate it too.
  8. could you do a mod that remove player's voice? why did you want that? because i had to put the voice in very lound or i cant undestand what are they saying. when i try to mlee attack someone the character start to scream and that is a kind of anoying.
  9. i dont know if they are allowed but if are, wuld be nice if someone replace some creatures/weapons models from the ones in elder scrolls online
  10. my character's foot nails are white, how could i fix it? http://s18.postimg.org/fhey61gpx/Screen_Shot2.png
  11. the npcs comments if the items that you are using or wearing is odd, strange if they are from lore unfriendly mods.This will make the lore unfriendly mods a little bit more lore friendly.
  12. I recently i'd instaled a lot of mods, that made me experience massive loads. now I'm afraid to install mods, so what kind of mods may inpact on the load time?
  13. just uncheck the: Skimpy or sexy content Nudity Include adult files Anime content
  14. my skyrin is not starting, the lood is only detecting that error: http://s11.postimg.org/6r42u5vw3/Sem_T_tulo_1.jpg can this make my skyrim dont start? how did i fix it? what does this delete mean? does this mod delete someting that is also deleted in " Unofficial Skyrim Patch.esp"
  15. could someone do a script that create a low resolutin spherical map on the location of each object(whithout the object itself) ever frame(or a determided amout of time), and then aply it as envioriment map for the object itself.
×
×
  • Create New...