cannot name a variable or property the same as a known type

Post » Wed Jun 20, 2012 12:37 pm

What? When I try to make a property this message appears. What does this mean, and how can I fix it?
User avatar
Danii Brown
 
Posts: 3337
Joined: Tue Aug 22, 2006 7:13 am

Post » Wed Jun 20, 2012 7:21 am

That means you tried to name a variable or property something like one of the following:

Actor
Int
Property
Quest
magicImodScript
etc.
User avatar
Phoenix Draven
 
Posts: 3443
Joined: Thu Jun 29, 2006 3:50 am

Post » Wed Jun 20, 2012 11:21 am

That means you tried to name a variable or property something like one of the following:

Actor
Int
Property
Quest
magicImodScript
etc.
What do you mean, like I used a name that was similar to one of those?
User avatar
Camden Unglesbee
 
Posts: 3467
Joined: Wed Aug 15, 2007 8:30 am

Post » Wed Jun 20, 2012 8:07 am

You can't name a property the same as a 'known type'. So you can't name a property something like 'Actor' or 'Int' because those are known types. They're words recognized by the compiler as denoting what type of variable something is. Those types of words are reserved, and shouldn't be used for anything other than in declaring the type of a variable/property.

Basically, don't use any words on http://www.creationkit.com/Category:Papyrus_Language_Reference or names of scripts as the name of a variable or property.
User avatar
Steven Nicholson
 
Posts: 3468
Joined: Mon Jun 18, 2007 1:24 pm

Post » Wed Jun 20, 2012 6:22 am

You can't name a property the same as a 'known type'. So you can't name a property something like 'Actor' or 'Int' because those are known types. They're words recognized by the compiler as denoting what type of variable something is. Those types of words are reserved, and shouldn't be used for anything other than in declaring the type of a variable/property.

Basically, don't use any words on http://www.creationkit.com/Category:Papyrus_Language_Reference or names of scripts as the name of a variable or property.
Ok gotcha. Thanks.
User avatar
Justin Bywater
 
Posts: 3264
Joined: Tue Sep 11, 2007 10:44 pm


Return to V - Skyrim