Thread: Arcanium

Page 4 of 9 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 87
  1. #31  
    Banned

    Join Date
    Apr 2013
    Posts
    1,614
    Thanks given
    410
    Thanks received
    475
    Rep Power
    0
    Quote Originally Posted by Jigsaw View Post
    I understand why you're upset, but your logic is flawed. You seem to be completely disregarding the fact that you released the exact source Vash used. You're treating him as though he would've released his variant whether or not you made yours public, and that is simply not the case. He only felt comfortable releasing his because you'd already done so.

    Should he have given you guys a heads up beforehand out of courtesy? Probably. But he had no obligation to, and in no way backstabbed you. If you didn't want people building off your project, you shouldn't have released it...
    No he bought a copy from someone we trusted and made minor updates to it, that’s what this is not what we released. The more I see this shit up the more it pisses me off.
     

  2. #32  
    Extreme Donator

    Jigsaw's Avatar
    Join Date
    Jan 2011
    Posts
    568
    Thanks given
    336
    Thanks received
    351
    Rep Power
    1383
    Quote Originally Posted by trees View Post
    No he bought a copy from someone we trusted and made minor updates to it, that’s what this is not what we released. The more I see this shit up the more it pisses me off.
    ???

    It's the exact same source. Sucks that you guys were betrayed like that, but the blame doesn't lie on Vash.

    Attached image
     

  3. #33  
    Registered Member
    Join Date
    Aug 2016
    Posts
    24
    Thanks given
    12
    Thanks received
    21
    Rep Power
    72
    Quote Originally Posted by trees View Post
    No he bought a copy from someone we trusted and made minor updates to it, that’s what this is not what we released. The more I see this shit up the more it pisses me off.
    Minor updates? Minor updates. Alright let's talk about minor updates.

    It seems like the most you did in this release was JSON loading, which my release has stopped using entirely.
    A lot of classes like ConsumableOptionPlugin, PickpocketNPCPlugin, WildernessDitchPlugin, etc, are just ripped from Arios with little to none of your code added to them.

    In fact, it looks like in EquipmentInterface, all you added was this Enum, which was enough for you to add your author tag:
    Code:
        public static enum SlotData {
    
            WEAPON(9, 3, "weapon"),
    
            CHEST(10, 4, "torso"),
    
            HELMET(6, 0, "helmet"),
    
            LEGS(12, 7, "legs"),
    
            SHIELD(11, 5, "shield"),
    
            AMULET(8, 2, "amulet"),
    
            BOOTS(14, 10, "boots"),
    
            RING(15, 12, "ring"),
    
            GLOVES(13, 9, "gloves"),
    
            CAPE(7, 1, "cape"),
    
            AMMO(16, 13, "ammo");
    
            int button, slot;
    
            SlotData(int button, int slot, String slot_name) {
                this.button = button;
                this.slot = slot;
            }
    
            public int getButton() {
                return button;
            }
    
            public int getSlot() {
                return slot;
            }
    
    
            public static SlotData getSlotFor(int button) {
                for (SlotData item : SlotData.values()) {
                    if (button == item.getButton()) {
                        return item;
                    }
                }
                return null;
            }
    
        }
    I'd like for you to go download your Inferno 176 release and see how many differences there are with Arcanium.

    Although your author tag was added to 20 classes, I'd be surprised if you wrote more than 5 by yourself.

    All the packets were wrong, most of which just as Arios 498 had left them, which I updated.
    Hopefully what you've done in the current build of Inferno is more than what I see here, because in the 176 release, it really wasn't much.

    Your concern for credit is laughably disproportionate to the amount of work you actually contribute.

    If what I did are minor updates, make sure you put ARIOS TEAM in the credits in size 7 font and bold as well as Nomac, since he's the one that even bothered converting Arios to OSRS.
     

  4. Thankful user:


  5. #34  
    Banned

    Join Date
    Apr 2013
    Posts
    1,614
    Thanks given
    410
    Thanks received
    475
    Rep Power
    0
    Quote Originally Posted by Vashmeed View Post
    Minor updates? Minor updates. Alright let's talk about minor updates.

    It seems like the most you did in this release was JSON loading, which my release has stopped using entirely.
    A lot of classes like ConsumableOptionPlugin, PickpocketNPCPlugin, WildernessDitchPlugin, etc, are just ripped from Arios with little to none of your code added to them.

    In fact, it looks like in EquipmentInterface, all you added was this Enum, which was enough for you to add your author tag:
    Code:
        public static enum SlotData {
    
            WEAPON(9, 3, "weapon"),
    
            CHEST(10, 4, "torso"),
    
            HELMET(6, 0, "helmet"),
    
            LEGS(12, 7, "legs"),
    
            SHIELD(11, 5, "shield"),
    
            AMULET(8, 2, "amulet"),
    
            BOOTS(14, 10, "boots"),
    
            RING(15, 12, "ring"),
    
            GLOVES(13, 9, "gloves"),
    
            CAPE(7, 1, "cape"),
    
            AMMO(16, 13, "ammo");
    
            int button, slot;
    
            SlotData(int button, int slot, String slot_name) {
                this.button = button;
                this.slot = slot;
            }
    
            public int getButton() {
                return button;
            }
    
            public int getSlot() {
                return slot;
            }
    
    
            public static SlotData getSlotFor(int button) {
                for (SlotData item : SlotData.values()) {
                    if (button == item.getButton()) {
                        return item;
                    }
                }
                return null;
            }
    
        }
    I'd like for you to go download your Inferno 176 release and see how many differences there are with Arcanium.

    Although your author tag was added to 20 classes, I'd be surprised if you wrote more than 5 by yourself.

    All the packets were wrong, most of which just as Arios 498 had left them, which I updated.
    Hopefully what you've done in the current build of Inferno is more than what I see here, because in the 176 release, it really wasn't much.

    Your concern for credit is laughably disproportionate to the amount of work you actually contribute.

    If what I did are minor updates, make sure you put ARIOS TEAM in the credits in size 7 font and bold as well as Nomac, since he's the one that even bothered converting Arios to OSRS.
    Author tags? Idc we paid nomac to do the initial conversion, we oversaw every piece of development, we invisioned this project, we put our time and effort into it all nomac did for us was get it running on the 155 and he stole the rest from us.

    Your not gunna justify the fact that you released stolen work. Doesn’t matter what ducking author tags you found, this entire production was paid for by us over the last year.
     

  6. #35  
    Extreme Donator

    Jigsaw's Avatar
    Join Date
    Jan 2011
    Posts
    568
    Thanks given
    336
    Thanks received
    351
    Rep Power
    1383
    Quote Originally Posted by trees View Post
    Author tags? Idc we paid nomac to do the initial conversion, we oversaw every piece of development, we invisioned this project, we put our time and effort into it all nomac did for us was get it running on the 155 and he stole the rest from us.

    Your not gunna justify the fact that you released stolen work. Doesn’t matter what ducking author tags you found, this entire production was paid for by us over the last year.
    Your team released it publicly. It's in the public domain now. End of discussion.

    Attached image
     

  7. #36  
    Donator


    Join Date
    Aug 2010
    Posts
    3,174
    Thanks given
    1,724
    Thanks received
    2,002
    Rep Power
    3837
    It was released already, sucks to suck.
    Source is booty anyways, just like any other RSPS other than Apollo.

    Now quit ya bitching.
     

  8. Thankful users:


  9. #37  
    Banned

    Join Date
    Apr 2013
    Posts
    1,614
    Thanks given
    410
    Thanks received
    475
    Rep Power
    0
    Quote Originally Posted by Jigsaw View Post
    Your team released it publicly. It's in the public domain now. End of discussion.
    We released broken 176 for people to learn not for some punk to use that to justify his actions of releasing a updated stolen version. End of discussion.

    @hank fuck off
     

  10. #38  
    Registered Member
    Join Date
    Aug 2016
    Posts
    24
    Thanks given
    12
    Thanks received
    21
    Rep Power
    72
    Quote Originally Posted by trees View Post
    We released broken 176 for people to learn not for some punk to use that to justify his actions of releasing a updated stolen version. End of discussion.
    I don't think you get it. I was the one that came to Techno when I found out I shouldn't have the source, who then decided to release it. The version I released here and developed was USING THE SOURCE YOU RELEASED.
     

  11. #39  
    Donator


    Join Date
    Aug 2010
    Posts
    3,174
    Thanks given
    1,724
    Thanks received
    2,002
    Rep Power
    3837
    Quote Originally Posted by trees View Post
    @hank fuck off
    https://i.gyazo.com/3be898f4078520df...47f102722e.mp4
    negged.
    Don't get mad I'm right.

    My shit was sold/released over the years, sucks to suck, move on.
     

  12. #40  
    Banned

    Join Date
    Apr 2013
    Posts
    1,614
    Thanks given
    410
    Thanks received
    475
    Rep Power
    0
    Quote Originally Posted by Hank View Post
    https://i.gyazo.com/3be898f4078520df...47f102722e.mp4
    negged.
    Don't get mad I'm right.

    My shit was sold/released over the years, sucks to suck, move on.
    Oo I’m hurt. Faggot
     

Page 4 of 9 FirstFirst ... 23456 ... LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Tags for this Thread

View Tag Cloud

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