Thread: Modern servers compared with old school servers

Page 1 of 5 123 ... LastLast
Results 1 to 10 of 49
  1. #1 Modern servers compared with old school servers 
    Registered Member

    Join Date
    Sep 2007
    Age
    29
    Posts
    2,396
    Thanks given
    5
    Thanks received
    436
    Rep Power
    902
    Ok so over the last 3 years Ive seen servers change so much, from when winterLove released the first server with no multiplayer support, to whitecastles, to satans isle, to zdiddy scape, to dodian, to deltascape, and now moving towards emulous.

    So for a bit of a discussion, In modern day servers, do you try program code to catch dupers? or do you just search suspious accounts, how do you deal with it

    heres a snippet from satans isle v1, this was found in alot of old servers to catch dupers,

    Code:
    public void ScanItems() {
    
    for(int i = 0; i < playerBankSize; i++)
    {
    if((bankItems[i] == 1043 || bankItems[i] == 1041 || bankItems[i] == 1039 || bankItems[i] == 1045 || bankItems[i] == 1047 || bankItems[i] == 1049 || bankItems[i] == 6571 || bankItems[i] == 1053 || bankItems[i] == 4152 || bankItems[i] == 3141 || bankItems[i] == 7159) && bankItemsN[i] >= 10)
    {
    saveasflagged();
    }
    }
    for(int i2 = 0; i2 < playerItems.length; i2++)
    {
    if((playerItems[i2] == 1044 || playerItems[i2] == 1042 || playerItems[i2] == 1040 || playerItems[i2] == 1046 || playerItems[i2] == 1048 || playerItems[i2] == 1050 || playerItems[i2] == 6571 || playerItems[i2] == 1054 || playerItems[i2] == 4153 || playerItems[i2] == 3142 || playerItems[i2] == 7160) && playerItemsN[i] >= 10)
    {
    saveasflagged();
    }
    }
    
    for(int i = 0; i < playerBankSize; i++)
    {
    if(bankItems[i] == 996 && bankItemsN[i] >= 10000000)
    {
    saveasflagged();
    }
    }
    for(int i2 = 0; i2 < playerItems.length; i2++)
    {
    if(playerItems[i2] == 996 && playerItemsN[i2] >= 10000000)
    {
    saveasflagged();
    }
    }
    
    }
    Basically if you have a party hat for alot of cash, it will "flag" your account saying it has duped items on it, so discuss.
    Hyperion V2 Martin's Updates.
    [Only registered and activated users can see links. ]

    Scar says:
    i hate it when it hits your face
    Reply With Quote  
     

  2. #2  
    Registered Member Vsall's Avatar
    Join Date
    Nov 2009
    Posts
    772
    Thanks given
    6
    Thanks received
    29
    Rep Power
    39
    well silabserver stopped in time they are realy similar with satans
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Sep 2007
    Age
    29
    Posts
    2,396
    Thanks given
    5
    Thanks received
    436
    Rep Power
    902
    Quote Originally Posted by kazt View Post
    well silabserver stopped in time they are realy similar with satans
    "silab servers" although they got a seperate name they were the exact same, but as the time silab was coming out, dodian was released so as people changed to dodian / devolution bases, satans isle started to die out, which is how I think they got the name.

    So yeah in any silab server most of the code, is VERY OLD. and most of the update protocall, was never re-written at all lol!.
    Hyperion V2 Martin's Updates.
    [Only registered and activated users can see links. ]

    Scar says:
    i hate it when it hits your face
    Reply With Quote  
     

  4. #4  




    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    27
    Posts
    16,200
    Thanks given
    7,190
    Thanks received
    12,174
    Discord
    View profile
    Rep Power
    5000
    Why would I try to catch them, when I should prevent them?

    [Only registered and activated users can see links. ]



    Reply With Quote  
     


  5. #5  
    Banned

    Join Date
    Jul 2008
    Age
    26
    Posts
    5,826
    Thanks given
    1,301
    Thanks received
    197
    Rep Power
    0
    RuneScape obviously has no protection like this, since for all three dupes nothing was suspected until some item had been completely devalued. If you did want to do this however, just employ a unique serial number with each item thats created from scratch, and when items are transferred, always carry the serial over. Once a week or so, just scan the database for duplicate serials.
    Reply With Quote  
     

  6. #6  
    brb ridin da storm

    blakeman8192's Avatar
    Join Date
    Dec 2012
    Age
    28
    Posts
    2,010
    Thanks given
    802
    Thanks received
    1,357
    Rep Power
    286
    Quote Originally Posted by Colby View Post
    RuneScape obviously has no protection like this, since for all three dupes nothing was suspected until some item had been completely devalued. If you did want to do this however, just employ a unique serial number with each item thats created from scratch, and when items are transferred, always carry the serial over. Once a week or so, just scan the database for duplicate serials.
    idea stealer
    rest in peace Qemist, Izzy, TeChNo PuNk, Impulser, & bootnecklad
    Reply With Quote  
     

  7. #7  
    Nya
    Nya is offline
    Registered Member
    Nya's Avatar
    Join Date
    Jul 2009
    Posts
    2,610
    Thanks given
    11
    Thanks received
    258
    Rep Power
    1398
    Quote Originally Posted by Colby View Post
    RuneScape obviously has no protection like this, since for all three dupes nothing was suspected until some item had been completely devalued. If you did want to do this however, just employ a unique serial number with each item thats created from scratch, and when items are transferred, always carry the serial over. Once a week or so, just scan the database for duplicate serials.
    Agreed ~~~~~
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Jul 2008
    Age
    26
    Posts
    5,826
    Thanks given
    1,301
    Thanks received
    197
    Rep Power
    0
    Quote Originally Posted by blakeman8192 View Post
    idea stealer
    usrs? I told you about that lol.

    However the serial idea employs some challenges, like that you would either need to ensure you have written the last used serial ID to disk before creating the item, or making sure your server shuts down safely every time and flushes out the last used serial.
    Reply With Quote  
     

  9. #9  
    Since '06

    Ayton's Avatar
    Join Date
    Dec 2006
    Age
    25
    Posts
    1,417
    Thanks given
    63
    Thanks received
    36
    Discord
    View profile
    Rep Power
    327
    Satan's Isle, hehe. Wasn't it by I loot I?

    OT: Preventing, and flagging.
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  10. #10  
    Registered Member
    blackman8192's Avatar
    Join Date
    Jun 2010
    Posts
    72
    Thanks given
    12
    Thanks received
    7
    Rep Power
    172
    Quote Originally Posted by Scu11 View Post
    Why would I try to catch them, when I should prevent them?
    Because that's common sense rofl.
    hi
    Reply With Quote  
     

Page 1 of 5 123 ... LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

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