Jump to content

Aderon2000

Members
  • Posts

    2
  • Joined

  • Last visited

Nexus Mods Profile

About Aderon2000

Aderon2000's Achievements

Newbie

Newbie (1/14)

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

Recent Badges

0

Reputation

  1. Thanks for quick reply, PhilippePetain. Yes, I have SKSE installed, and I have all the source files (...Data\Scripts\Source). I moved the SKSE modified sources to the data folder. It seems like the base source files are incomplete for some reasons. For example, I looked into Quest.psc, this is what I got - there is no "SCRIPTNAME" defining "Quest" in line 3, which obviously the compiler does not like. Am I missing something? Thanks. ; returns the quest with the specified editor id Quest Function GetQuest(string editorId) global native ; returns the editor ID of the quest string Function GetID() native ; returns the priority of the quest int Function GetPriority() native ; returns the number of aliases associated with the quest int Function GetNumAliases() native ; returns the specified alias associated with the queest Alias Function GetNthAlias(int index) native ; returns the alias associated with the quest by name Alias Function GetAliasByName(string name) native
  2. Hello, this is my first try on writing script with Papyrus. It seems like I cannot compile any script, even the simple one. I follow CIPSCIS tutorial with a very simple script: ScriptName MyFirstScript extends Quest Event OnInit() Debug.Notification("Hello, World!") EndEvent I followed the instruction exactly, but the compile failed (I compiled with Notepad++ and also CreationKit but all failed). The errors are follow: Starting 1 compile threads for 1 files...Compiling "MyFirstScript"...C:\Games\Skyrim\steamapps\common\skyrim\Data\Scripts\Source\Quest.psc(3,0): missing SCRIPTNAME at 'Quest'C:\Games\Skyrim\steamapps\common\skyrim\Data\Scripts\Source\Quest.psc(3,6): required (...)+ loop did not match anything at input 'Function'C:\Games\Skyrim\steamapps\common\skyrim\Data\Scripts\Source\MyFirstScript.psc(5,1): variable Debug is undefinedC:\Games\Skyrim\steamapps\common\skyrim\Data\Scripts\Source\MyFirstScript.psc(5,7): none is not a known user-defined typeNo output generated for MyFirstScript.psc, compilation failed.Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on MyFirstScript.psc I tried to compile even the basic script file, for example "Quest.psc", "Actor.psc", and all failed because of similar problems. I reinstalled the Creation Kit and still the same. Did I do anything wrong? Is there anything I need to set? Thanks for help.
×
×
  • Create New...