Results 1 to 5 of 5

Thread: The problem with arrays...

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Assadministrator IzNoGoD's Avatar
    Join Date
    Aug 2012
    Posts
    1,718
    Thanks
    17
    Thanked 1,068 Times in 674 Posts
    Converting to string isnt needed
    I would advise you to move the getguid() and that other thread out of the loop.

    Also, if timing is critical, DO NOT THREAD that function. Remove thread-word.

  2. The Following 2 Users Say Thank You to IzNoGoD For This Useful Post:

    kung foo man (3rd February 2013),Moczulak (4th February 2013)

  3. #2
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,011
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    Quote Originally Posted by IzNoGoD View Post
    Also, if timing is critical, DO NOT THREAD that function. Remove thread-word.
    Just to express that in code.

    From:
    Code:
    self thread files\_propertiesguid::load(guid); // Load self.oldweapon
    To:
    Code:
    self files\_propertiesguid::load(guid); // Load self.oldweapon
    timescale 0.01

  4. The Following 2 Users Say Thank You to kung foo man For This Useful Post:

    IzNoGoD (4th February 2013),Moczulak (4th February 2013)

  5. #3
    Private
    Join Date
    Aug 2012
    Posts
    78
    Thanks
    20
    Thanked 10 Times in 5 Posts
    Thanks kung foo man and IzNoGoD

Posting Permissions

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