Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 7 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
From Noob to Pro: Amnesia Custom Story Creation Series
Sennep Offline
Junior Member

Posts: 47
Threads: 6
Joined: Apr 2011
Reputation: 0
#21
RE: From Noob to Pro: Amnesia Custom Story Creation Series

Very nice tutorials!
11-07-2011, 07:39 PM
Find
Skashi Away
Pirate

Posts: 315
Threads: 28
Joined: Nov 2011
#22
RE: From Noob to Pro: Amnesia Custom Story Creation Series

thx, it helped alot :3
11-24-2011, 04:49 PM
Find
Lord Wadsworth Offline
Junior Member

Posts: 2
Threads: 0
Joined: Nov 2011
Reputation: 0
#23
RE: From Noob to Pro: Amnesia Custom Story Creation Series

Wonderful tutorials and great information.

While off subject a tad, where does all your wonderful music come from?
12-01-2011, 12:14 AM
Find
Your Computer Offline
SCAN ME!

Posts: 3,456
Threads: 32
Joined: Jul 2011
Reputation: 235
#24
RE: From Noob to Pro: Amnesia Custom Story Creation Series

(12-01-2011, 12:14 AM)Lord Wadsworth Wrote: While off subject a tad, where does all your wonderful music come from?

http://www.solesignalmusic.com/
http://machinimasound.com/

Tutorials: From Noob to Pro
12-01-2011, 12:46 AM
Website Find
Lord Wadsworth Offline
Junior Member

Posts: 2
Threads: 0
Joined: Nov 2011
Reputation: 0
#25
RE: From Noob to Pro: Amnesia Custom Story Creation Series

(12-01-2011, 12:46 AM)Your Computer Wrote:
(12-01-2011, 12:14 AM)Lord Wadsworth Wrote: While off subject a tad, where does all your wonderful music come from?



http://www.solesignalmusic.com/

http://machinimasound.com/
Thanks very much, great stuff. Great music for great tutorials.

12-01-2011, 02:03 AM
Find
Youjimbo Offline
Junior Member

Posts: 2
Threads: 0
Joined: Dec 2011
Reputation: 0
#26
RE: From Noob to Pro: Amnesia Custom Story Creation Series

This will be my very first tutorials for amnesia custom creations...
First impression is incredible. hope this helps me a long way!

(Video series was hard to find on youtube. found it on the forums. seems legit n' awesome)
12-02-2011, 12:46 PM
Find
Vipes Offline
Junior Member

Posts: 39
Threads: 11
Joined: Dec 2011
Reputation: 0
#27
RE: From Noob to Pro: Amnesia Custom Story Creation Series

Never read or looked at a tutorial, just jumped right in and understood most of the map editor. I guess it helps that I know somewhat of Unreal Ed.

Donno if it helps, but read up on some tutorials for Unreal Ed.
12-14-2011, 05:27 AM
Find
Statyk Offline
Schrödinger's Mod

Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation: 241
#28
RE: From Noob to Pro: Amnesia Custom Story Creation Series

Is it weird that I took notes on your "basic scripting" tutorial?

And I kinda got lost a bit when you were explaining the "for" loop... I'm not sure what symbols like: ?, ::, ++, and . represent. They weren't really explained. Is there somewhere that explains simple things like such?
01-18-2012, 02:58 AM
Find
Your Computer Offline
SCAN ME!

Posts: 3,456
Threads: 32
Joined: Jul 2011
Reputation: 235
#29
RE: From Noob to Pro: Amnesia Custom Story Creation Series

(01-18-2012, 02:58 AM)Statyk Wrote: And I kinda got lost a bit when you were explaining the "for" loop... I'm not sure what symbols like: ?, ::, ++, and . represent. They weren't really explained. Is there somewhere that explains simple things like such?

I was hoping the person watching would catch on to the keywords and do independent research. Researching PHP or C++ would provide you with practical information that you can take into AngelScript. Here's a quick run-through.

Ternary operator:
PHP Code: (Select All)
(condition) ? if_condition_is_true_value if_condition_is_false_value ;

// Example:
int x = (true) ? 1;
// x is now 0
= (false) ? 1;
// x is now 1 

Increment operator:
PHP Code: (Select All)
int i 0;
++
i// i is now 1

int x i++;
// x is now 1
// i is now 2

= ++i;
// x is now 3
// i is now 3 


For (loop) statement:
PHP Code: (Select All)
/**
 *   First expression can be any kind of expression,
 *     but it is practically used for variable declarations.
 *
 *   Second expression is used to check if the loop should continue,
 *     therefore an expression that would return true or false is required.
 *
 *   Third expression can be any kind of expression,
 *     but it is practically used for incrementing.
 */
for (first expression second expression third expression)
// note each expression is delimited by a semi-colon
{
    
// for statement body
    // Gets executed if second expression evaluates to true


Tutorials: From Noob to Pro
(This post was last modified: 01-18-2012, 03:34 PM by Your Computer.)
01-18-2012, 03:33 PM
Website Find
Statyk Offline
Schrödinger's Mod

Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation: 241
#30
RE: From Noob to Pro: Amnesia Custom Story Creation Series

(01-18-2012, 03:33 PM)Your Computer Wrote:
(01-18-2012, 02:58 AM)Statyk Wrote: And I kinda got lost a bit when you were explaining the "for" loop... I'm not sure what symbols like: ?, ::, ++, and . represent. They weren't really explained. Is there somewhere that explains simple things like such?

I was hoping the person watching would catch on to the keywords and do independent research. Researching PHP or C++ would provide you with practical information that you can take into AngelScript. Here's a quick run-through.

Ternary operator:
PHP Code: (Select All)
(condition) ? if_condition_is_true_value if_condition_is_false_value ;

// Example:
int x = (true) ? 1;
// x is now 0
= (false) ? 1;
// x is now 1 

Increment operator:
PHP Code: (Select All)
int i 0;
++
i// i is now 1

int x i++;
// x is now 1
// i is now 2

= ++i;
// x is now 3
// i is now 3 


For (loop) statement:
PHP Code: (Select All)
/**
 *   First expression can be any kind of expression,
 *     but it is practically used for variable declarations.
 *
 *   Second expression is used to check if the loop should continue,
 *     therefore an expression that would return true or false is required.
 *
 *   Third expression can be any kind of expression,
 *     but it is practically used for incrementing.
 */
for (first expression second expression third expression)
// note each expression is delimited by a semi-colon
{
    
// for statement body
    // Gets executed if second expression evaluates to true

I apologize for asking... I really do like to learn on my own and study other scripts and such... I understand SOME, but things such as the symbols were confusing me. I do appreciate you taking time to help, I know it must be frustrating having people ask stupid questions like that...

If it helps to know, I DID do some research in my digital imaging class (whoops) and lead myself to the original angelscript website, but I could only understand so much..

Anyway, Thank you, I'll try to experiment and compare other scripts, such as Palistov's, as doing so has lead me to what I know so far.
(This post was last modified: 01-19-2012, 03:03 AM by Statyk.)
01-19-2012, 03:03 AM
Find




Users browsing this thread: 1 Guest(s)