Jump to content

cuceta

Members
  • Posts

    4
  • Joined

  • Last visited

Nexus Mods Profile

About cuceta

cuceta's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter

Recent Badges

0

Reputation

  1. Can you guy do a simple thing? Add a new filter inside Image Library to search images by its title. That would be nice
  2. Got it, i was missing to fill the property value Now it works
  3. Hello, how're you guys doing? This is my first post here in Nexus Forum I'm making a simple papyrus script to get the ammout of Lesser Soul Gems in the Player's inventory, but so far i'm having troubles to get the value. Here is my snippet: ;Ammout of Petty Soul Gems int pettyQtd ;Calling Event (It is working in-game) Event OnEffectStart(...) ;Attempt 1 (Player has 20 Petty Soul Gems) pettyQtd = Game.GetPlayer().GetItemCount(SoulGemPetty) ;Script Error: variable SoulGemPetty is undefined ;Attempt 2 (Using SoulGem property SoulGemPetty Auto and the player having 20 Petty Soul Gems) pettyQtd = Game.GetPlayer().GetItemCount(SoulGemPetty) ;Returns 0 ;Output Debug.MessageBox("You have " + pettyQtd + " Petty Soul Gems in your inventory); EndEvent What am i doing wrong and how is the right form to get the information? Sorry if this is the wrong place to post help and for my bad english, i'm from Brazil. Thanks
×
×
  • Create New...