Thread: [667/OSRS] Nalore - The Most Ambitious Pre-EOC/OSRS Hybrid

Page 14 of 16 FirstFirst ... 41213141516 LastLast
Results 131 to 140 of 157
  1. #131  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by Arham View Post
    why's your 4head so large
    idk i didn't code it dude wtf?
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  2. #132  
    nice


    Join Date
    Jul 2014
    Posts
    740
    Thanks given
    382
    Thanks received
    562
    Rep Power
    4239
    Quote Originally Posted by Tyluur View Post
    No I didn't link an rs item brother I linked this https://softwareengineering.stackexc...-magic-strings

    Why's the twisted bow so large here btw

    Attached image
    theres 1 literally dropped on the ground, thats y?
    Attached image
    Reply With Quote  
     


  3. #133  
    Registered MrClassic
    MrClassic's Avatar
    Join Date
    Oct 2008
    Age
    15
    Posts
    2,063
    Thanks given
    24,154
    Thanks received
    551
    Rep Power
    5000
    Quote Originally Posted by Suic View Post
    theres 1 literally dropped on the ground, thats y?
    Lol I didn't see it at first too
    Reply With Quote  
     

  4. Thankful user:


  5. #134  
    Aldor Manager


    Join Date
    Mar 2014
    Age
    28
    Posts
    1,234
    Thanks given
    200
    Thanks received
    297
    Rep Power
    2459
    The twisted bow is the correct size character model is also bigger model then osrs model

    Correct me if im wrong
    Attached image

    Respect goes to everyone as he deserves.
    Reply With Quote  
     

  6. Thankful user:


  7. #135  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by Suic View Post
    theres 1 literally dropped on the ground, thats y?
    Oh lol that’s such awkward positioning!
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  8. Thankful users:


  9. #136  
    Banned
    Join Date
    Nov 2020
    Posts
    15
    Thanks given
    3
    Thanks received
    18
    Rep Power
    0
    Quote Originally Posted by Tyluur View Post
    That makes sense - my point is more on the lines of using a utility class may become tedious as the days turn to months and the months turn to years.
    Perhaps theres a better solution...
    While I agree magic constants are not desirable, I think this is a great solution. Dread is taking a file and generating constants compile time. There's literally nothing you could do better.
    I believe actually "your" Dusk code used the same concept in essence.

    https://github.com/GregHib/void/blob...thdraw.kts#L18

    Except it's loitered throughout the codebase. Instead of all in one place (which is fine, just probably a major hassle if you want to change part of the design)
    Reply With Quote  
     

  10. Thankful users:


  11. #137  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by Italia View Post
    While I agree magic constants are not desirable, I think this is a great solution. Dread is taking a file and generating constants compile time. There's literally nothing you could do better.
    I believe actually "your" Dusk code used the same concept in essence.

    https://github.com/GregHib/void/blob...thdraw.kts#L18

    Except it's loitered throughout the codebase. Instead of all in one place (which is fine, just probably a major hassle if you want to change part of the design)
    There’s always room for innovation... How can this be improved?
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  12. #138  
    Banned
    Join Date
    Nov 2020
    Posts
    15
    Thanks given
    3
    Thanks received
    18
    Rep Power
    0
    Quote Originally Posted by Tyluur View Post
    There’s always room for innovation... How can this be improved?
    It doesn't need to be improved, doing anything further is the design equivalent of a micro-optimization. There isn't a single thing you'd want to do differently. It's immutable, has no magic constants, has compile-time error checking, and it's easy to change the structure if necessary. You're just looking for something negative to say to bring yourself up or "competing" projects down. You do this to anything that's remotely like what you wish your server would be. You pick at tiny, unimportant details and try to make someone else look bad. When the only person who looks bad is yourself.
    Reply With Quote  
     


  13. #139  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by Italia View Post
    It doesn't need to be improved, doing anything further is the design equivalent of a micro-optimization. There isn't a single thing you'd want to do differently. It's immutable, has no magic constants, has compile-time error checking, and it's easy to change the structure if necessary. You're just looking for something negative to say to bring yourself up or "competing" projects down. You do this to anything that's remotely like what you wish your server would be. You pick at tiny, unimportant details and try to make someone else look bad. When the only person who looks bad is yourself.
    No, I don't think you understand what I'm saying.

    You'll always have to have a pointer to some object

    [eg]
    Code:
    const val HAS_COMPLETED_TUTORIAL = 10000
    That's not necessary and can be improved. I had a similar issue as well

    Code:
    BooleanVariable(115, Variable.Type.VARP, persistent = true).register("bank_notes")
    What the system that @Greg wrote [the above code], used was keys that identified the variables. This was based on the design suggestion by @Scu11 in the informative threads section of the RS2 section.

    My comment was simply in hopes of finding a better solution.
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  14. #140  
    Banned
    Join Date
    Nov 2020
    Posts
    15
    Thanks given
    3
    Thanks received
    18
    Rep Power
    0
    Quote Originally Posted by Tyluur View Post
    No, I don't think you understand what I'm saying.

    You'll always have to have a pointer to some object

    [eg]
    Code:
    const val HAS_COMPLETED_TUTORIAL = 10000
    That's not necessary and can be improved. I had a similar issue as well

    Code:
    BooleanVariable(115, Variable.Type.VARP, persistent = true).register("bank_notes")
    What the system that @Greg wrote [the above code], used was keys that identified the variables. This was based on the design suggestion by @Scu11 in the informative threads section of the RS2 section.

    My comment was simply in hopes of finding a better solution.
    Nobody here agrees with anything that you are saying. If you honestly spent half the time you spend shitting on other servers, and spent that time on Dusk, you'd be done by now.
    Reply With Quote  
     

Page 14 of 16 FirstFirst ... 41213141516 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. [317] ✦ Ruse - The revival | Pre-EOC & OSRS ✦
    By Ruse PS in forum Advertise
    Replies: 94
    Last Post: 03-09-2021, 08:41 PM
  2. Replies: 15
    Last Post: 06-05-2016, 03:48 PM
  3. Replies: 53
    Last Post: 05-11-2016, 10:51 AM
  4. Legendary Forums The next best pre-eoc private server
    By Powerlvlfish in forum Advertise
    Replies: 3
    Last Post: 01-03-2014, 07:23 PM
  5. Rune - One of the most ambitious projects ever
    By Runers in forum Advertise
    Replies: 67
    Last Post: 11-09-2013, 11:39 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •