Page 2 of 2 FirstFirst 1 2
Results 11 to 14 of 14

Thread: Odd functions in Halo Script.

  1. #11

    Re: Odd functions in Halo Script.

    ^case closed, I suppose.
    Reply With Quote

  2. #12
    The One and Only TheGhost's Avatar
    Join Date
    Aug 2006
    Location
    San Francisco, CA
    Posts
    2,727

    Re: Odd functions in Halo Script.

    Quote Originally Posted by S3anyBoy View Post
    Same for dormant scripts, this is the case in almost(?) every scripting language, because they're usually sequential, you couldn't call on something that hasn't been defined yet.
    ftfy

    most modern (object-oriented) programming languages which are compiled do not care the order you define or call things
    Reply With Quote

  3. #13
    Neanderthal Dwood's Avatar
    Join Date
    Sep 2008
    Location
    Wouldn't u like to know?
    Posts
    4,189

    Re: Odd functions in Halo Script.

    Quote Originally Posted by Kornman00 View Post
    I should note that I just c&p that text from a LISP reference (it was a leaked document so I never got around to culling the info that didn't apply here). Halo Script, while it uses a LISP-like grammar, it itself is not LISP nor does it use a LISP parser. Bungie programmed their own parser/compiler for HS.
    So I can't use arrays?

    I could do some BEAST scripts if I could use arrays.
    Reply With Quote

  4. #14

    Re: Odd functions in Halo Script.

    Quote Originally Posted by TheGhost View Post
    ftfy

    most modern (object-oriented) programming languages which are compiled do not care the order you define or call things
    To a point this is true. For example:

    Code:
    Messagebox.show(rawr)
    Dim rawr as string = "hi"
    That won't work. You are referencing a value before it's defined.
    Reply With Quote

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •