Results 1 to 9 of 9
  1. #1
    Schmutz02's Avatar
    Join Date
    Aug 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    59

    [Client/Server] Skilly's Educational Source++

    Back when this source was first released by @SSkilly I thought it was awesome and that anyone wanting to make their own PServer should use this source. Until I realized it was missing a few things. So I went ahead and added some features that people probably want in their base:
    • Portals
    • Player teleporting
    • Different chats (tell, guild, announce)
    • Vault
    • Realms
    • Quests
    • Guilds
    • Loot system
    • Trading
    • Some extra commands
    • Setpieces
    • Potion consumption
    • Music
    • Some editor additions
    • Small changes

    A lot of the logic for these came from NR-Core, but I tried to keep the code style similar to what Skilly had done.
    I did test this at multiple stages and asked people to try and find bugs, glitches, or just break the game. So all of this has been tested and confirmed working and bug/glitch free. That being said it's possible I missed something, but did not break anything in the original source.

    Cheers. Have fun with a more up to date smooth af source

    Edit: I Realized I forgot to add something back when removing something I was testing.
    In Player.Inventory.cs DropItem

    Replace
    var item = Inventory[slot];

    With
    int item = Inventory[slot];
    int data = ItemDatas[slot];

    and replace
    Inventory[slot] = -1;

    with
    Inventory[slot] = -1;
    ItemDatas[slot] = -1;

    and replace
    container.Inventory[0] = item;

    with
    container.Inventory[0] = item;
    container.ItemDatas[0] = data;

    In Player.Inventory.cs SwapItem
    Replace
    //Invalid slot types
    var item1 = con1.Inventory[slot1.SlotId];
    var item2 = con2.Inventory[slot2.SlotId];

    With
    //Invalid slot types
    int item1 = con1.Inventory[slot1.SlotId];
    int data1 = con1.ItemDatas[slot1.SlotId];
    int item2 = con2.Inventory[slot2.SlotId];
    int data2 = con2.ItemDatas[slot2.SlotId];

    and replace
    con1.Inventory[slot1.SlotId] = item2;
    con2.Inventory[slot2.SlotId] = item1;

    with
    con1.Inventory[slot1.SlotId] = item2;
    con1.ItemDatas[slot1.SlotId] = data2;
    con2.Inventory[slot2.SlotId] = item1;
    con2.ItemDatas[slot2.SlotId] = data1;

    Oopsie.
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Schmutz02; 12-06-2020 at 12:43 AM.

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

    akljsdjflkajsdf (01-25-2022),[MPGH]Beex (12-06-2020),blablaman2 (11-17-2022),blablaman3 (11-08-2021),BOBBLETHICC (03-30-2023),bog624 (07-23-2022),clintgod (01-23-2023),darken024 (02-12-2022),DarKillerBr (03-09-2024),dast1212 (01-28-2023),DuckyDoesNotPlay (02-02-2022),exeptionv (04-17-2023),Freez210 (08-01-2021),FunkyFirst (11-20-2022),gummyishere (03-24-2022),haxerwarrior (07-12-2021),Heppere (12-07-2021),IceCubeHCC (02-18-2021),infinitesweg (10-14-2022),ItsJustZealy (12-05-2020),Jox166 (05-07-2023),Kataror (04-11-2021),kokogang (04-22-2022),Kuba4ever (12-28-2020),likeahero (03-01-2021),Magiertoasti (03-03-2024),Miunie (06-27-2023),mrzdetonator (12-16-2023),Mystic-City (03-29-2021),NikoTheFolf (07-23-2021),Norjajetu (03-19-2021),Omniraptor (01-19-2021),Pineboy2 (11-12-2023),Pixyde (12-30-2022),Plugify (10-14-2022),qwertyb0y (07-02-2022),RealZodark (02-24-2021),rotmgman2 (05-01-2023),sebastianfra12 (04-26-2021),SinnyDeas (11-19-2021),slendermaniscoming (1 Week Ago),spikewall (01-28-2024),Squid_The_Cool_Kid (02-13-2024),SSkilly (12-06-2020),test1010102 (11-07-2023),TheDarkRaven1 (02-05-2021),theross (12-24-2020),The_Real_DethStrike (08-12-2023),Trip (04-12-2021),tuut (03-20-2023),Twinlord (12-31-2020),UKGamingHD-ALT (02-08-2023),welding (02-27-2024),wycuhmi (12-26-2020),Yaknesikkk (06-12-2023),zzexd (12-06-2020)

  3. #2
    ItsJustZealy's Avatar
    Join Date
    Nov 2020
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1
    Eyo! This is Reeses and I wanted to vouch for this. I helped Schmutz in terms of looking for bugs and this source is SMOOTH. Shoutout to Skilly for all the hard work he put into this (and helping Schmutz out near the end) and Schmutz of course for taking the source and putting the finishing touches on it.

    I'm pretty excited to see what this source provides for the Pserver community. Also hopeful to see a first "big" server to use it and see over 100 people join it!

  4. #3
    Coockson's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    5
    My Mood
    Tired
    This is mental - but I already suspected you were doing something like this when you hosted a public test server using this source in the TK d****rd.


    Thanks, I'll enjoy looking through this.


    EDIT: It could have been AR d*****d, i dont remember lol
    Last edited by Coockson; 12-07-2020 at 07:46 PM.

  5. #4
    Schmutz02's Avatar
    Join Date
    Aug 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    59
    Quote Originally Posted by Coockson View Post
    This is mental - but I already suspected you were doing something like this when you hosted a public test server using this source in the TK d****rd.


    Thanks, I'll enjoy looking through this.


    EDIT: It could have been AR d*****d, i dont remember lol
    My original plan was to implement the original source into AR to make it smoother, but that fell through. I also just wanted to see how it would perform with a decent amount of people. So now instead of buffing AR I just buffed the original source.

  6. #5
    TopChaosKenta's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Overseas, Saisong II
    Posts
    64
    Reputation
    10
    Thanks
    6
    My Mood
    Cool
    are people allowed to use it and host the server?

  7. #6
    Schmutz02's Avatar
    Join Date
    Aug 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    59
    Quote Originally Posted by TopChaosKenta View Post
    are people allowed to use it and host the server?
    I would love to see nothing more. Only this is there are no behaviors, but hosting is completely fine

  8. The Following User Says Thank You to Schmutz02 For This Useful Post:

    TopChaosKenta (12-19-2020)

  9. #7
    TopChaosKenta's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Overseas, Saisong II
    Posts
    64
    Reputation
    10
    Thanks
    6
    My Mood
    Cool
    Thank You man I dont want to take work and use it without authorize

  10. #8
    Foesky's Avatar
    Join Date
    Jun 2020
    Gender
    female
    Location
    Hemligt Hemligt
    Posts
    9
    Reputation
    10
    Thanks
    0

    im going for it

    i just got my VPS server back after lending it out to others for almost 6 months.. and i still have 9 Months left on this European cutie of a vps..

    So i have thought about putting up a Server either by sponsoring someone that needs somewhere to host one of their servers or just put a Fresh - Clean source on there and just work on further developments.


    and as i don't know anyone that is into Priv servers i think I'll just use your Educational Source to begin with

    So Thank you so very much for sharing this Server & Client Source... much appreciated

  11. #9
    Twinlord's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    182
    Reputation
    10
    Thanks
    181
    im having problems opening the server project, can someone help?

Similar Threads

  1. [Client/Server] Educational Source
    By SSkilly in forum Realm of the Mad God Private Servers Tutorials/Source Code
    Replies: 7
    Last Post: 12-21-2020, 12:10 AM
  2. Public Bags and Soulbound Items [Skilly's Educational Source]
    By Invader_Zim in forum Realm of the Mad God Private Servers Tutorials/Source Code
    Replies: 0
    Last Post: 12-03-2020, 08:19 PM
  3. [Request] RAT client/server source code for C++
    By eliteCVDelite in forum General Hacking
    Replies: 4
    Last Post: 02-24-2011, 02:01 PM
  4. [Source Code]RAT Client/Server
    By Bombsaway707 in forum General Hacking
    Replies: 8
    Last Post: 02-10-2011, 03:53 PM
  5. [Source]Visual Basic Phishing Files for warrock (client + server)
    By HeXel in forum Trade Accounts/Keys/Items
    Replies: 9
    Last Post: 03-10-2008, 05:41 AM