Thread: Vencillio Help

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Vencillio Help 
    Registered Member
    Join Date
    Nov 2015
    Posts
    89
    Thanks given
    33
    Thanks received
    5
    Discord
    View profile
    Rep Power
    10
    I know people don't like "leechers" but to learn I have to start somewhere.

    I downloaded the Vencillio source and client learning how to code rsps from 0 knowledge at all about coding, or even about eclipse. I managed to actually run the server and log on, which I wasn't able to with different sources and clients.

    What I notice is that tutorials aren't the same for every source. For example, I tried Matrix 718 and the steps to making someone owner/admin/mod isn't the same for Vencillio, so I have no idea how to do that.

    Can someone give me a few tutorials about Vencillio? Things like making someone a staff member, changing home locations, changing name of the interfaces so it will be changed from "vencillio" to whatever you want it to be, changing announcements, etc. And if there are any other beginners who use Vencillio maybe we can help each other?
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Jul 2008
    Posts
    69
    Thanks given
    32
    Thanks received
    10
    Rep Power
    6
    A lot of the interfaces are handled in CustomInterfaces.java, there is a combat bug that you can fix if read around on a thread here in the help section, someone explains how to fix it.

    As for becoming an admin open up

    Source>data>characters>details>YOURNAME.json

    Press ctrl+f to search for
    Code:
      "rights": 0,
    and change the 0 to 3, like this.

    Code:
      "rights": 3,
    That will give you Owner position.



    Also there is a command called "bsf815s" in PlayerCommand.java , delete this or comment it out to prevent people from setting there stats to whatever they want.

    EDIT:

    If you press ctrl+f inside PlayerCommand.java , search for

    Code:
    case "bsf815s":
    You should find the following

    Code:
    		case "bsf815s":
    			if (parser.hasNext(2)) {
    				short skill = parser.nextShort();
    				short amount = parser.nextShort();
    				player.getLevels()[skill] = amount;
    				player.getMaxLevels()[skill] = amount;
    				player.getSkill().getExperience()[skill] = Skill.EXP_FOR_LEVEL[amount - 1];
    				player.getSkill().update();
    				player.send(new SendMessage("You set " + Skills.SKILL_NAMES[skill] + " to level " + amount + "."));
    			}
    			return true;
    Replace everything in the box above with everything in the box below (copy pasta)

    Code:
    		//*case "bsf815s":
    			//if (parser.hasNext(2)) {
    				//short skill = parser.nextShort();
    				//short amount = parser.nextShort();
    				//player.getLevels()[skill] = amount;
    				//player.getMaxLevels()[skill] = amount;
    				//player.getSkill().getExperience()[skill] = Skill.EXP_FOR_LEVEL[amount - 1];
    				//player.getSkill().update();
    				//player.send(new SendMessage("You set " + Skills.SKILL_NAMES[skill] + " to level " + amount + "."));
    			//}
    			//return true;
    There you go! Quick fix !
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member
    Join Date
    Nov 2015
    Posts
    89
    Thanks given
    33
    Thanks received
    5
    Discord
    View profile
    Rep Power
    10
    Quote Originally Posted by Rian View Post
    A lot of the interfaces are handled in CustomInterfaces.java, there is a combat bug that you can fix if read around on a thread here in the help section, someone explains how to fix it.

    As for becoming an admin open up

    Source>data>characters>details>YOURNAME.json

    Press ctrl+f to search for
    Code:
      "rights": 0,
    and change the 0 to 3, like this.

    Code:
      "rights": 3,
    That will give you Owner position.



    Also there is a command called "bsf815s" in PlayerCommands.java , delete this or comment it out to prevent people from setting there stats to whatever they want.
    I can do Source>data>characters>details>YOURNAME.json from files but how do I do it on eclipse? If I open vource then I see no data.I also can't find playercommands.java in eclipse :l
    Reply With Quote  
     

  5. #4  
    Registered Member
    Join Date
    Jul 2008
    Posts
    69
    Thanks given
    32
    Thanks received
    10
    Rep Power
    6
    Quote Originally Posted by help plox View Post
    I can do Source>data>characters>details>YOURNAME.json from files but how do I do it on eclipse? If I open vource then I see no data.

    Use a simple text editor for these files. I prefer Notepad++
    Reply With Quote  
     

  6. Thankful user:


  7. #5  
    Registered Member
    Join Date
    Nov 2015
    Posts
    89
    Thanks given
    33
    Thanks received
    5
    Discord
    View profile
    Rep Power
    10
    Quote Originally Posted by Rian View Post
    Use a simple text editor for these files. I prefer Notepad++
    Ok thank you. Do you know how to change the names of interfaces like the bank interface from vencillio to something else?
    Reply With Quote  
     

  8. #6  
    Registered Member
    Join Date
    Jul 2008
    Posts
    69
    Thanks given
    32
    Thanks received
    10
    Rep Power
    6
    Quote Originally Posted by help plox View Post
    Ok thank you. Do you know how to change the names of interfaces like the bank interface from vencillio to something else?
    You're most welcome ! Glad I could help.

    and Yes ! If you actually go into the client files this time we'll be able to edit that. For some reason the name of the client and the bank are tied together. No worries though. Just follow these steps.

    Client>src>ClientConstants.java

    Once you're inside go ahead and ctrl+f again and search for

    Code:
    	public final static String CLIENT_NAME = "Vencillio";
    Simply change "Vencillio" to whatever you want, and it'll change the bank and client's name.

    EDIT: Don't forget to Compile!
    Reply With Quote  
     

  9. Thankful user:


  10. #7  
    Donator
    Ange's Avatar
    Join Date
    Apr 2018
    Posts
    43
    Thanks given
    2
    Thanks received
    1
    Rep Power
    11
    Quote Originally Posted by Rian View Post
    You're most welcome ! Glad I could help.

    and Yes ! If you actually go into the client files this time we'll be able to edit that. For some reason the name of the client and the bank are tied together. No worries though. Just follow these steps.

    Client>src>ClientConstants.java

    Once you're inside go ahead and ctrl+f again and search for

    Code:
    	public final static String CLIENT_NAME = "Vencillio";
    Simply change "Vencillio" to whatever you want, and it'll change the bank and client's name.

    EDIT: Don't forget to Compile!
    what you mean compile ? I don't understand
    Reply With Quote  
     

  11. #8  
    Registered Member

    Join Date
    Oct 2011
    Posts
    2,102
    Thanks given
    0
    Thanks received
    1,041
    Rep Power
    3608
    Quote Originally Posted by John1 View Post
    what you mean compile ? I don't understand
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  12. #9  
    Donator
    Ange's Avatar
    Join Date
    Apr 2018
    Posts
    43
    Thanks given
    2
    Thanks received
    1
    Rep Power
    11
    Quote Originally Posted by Omelete View Post
    [Only registered and activated users can see links. ]
    thanks but this is the minimum I know how to do that
    Reply With Quote  
     

  13. #10  
    Registered Member

    Join Date
    Oct 2011
    Posts
    2,102
    Thanks given
    0
    Thanks received
    1,041
    Rep Power
    3608
    Quote Originally Posted by John1 View Post
    what you mean compile ? I don't understand
    Quote Originally Posted by John1 View Post
    thanks but this is the minimum I know how to do that
    then you should know how to compile...?
    Reply With Quote  
     

  14. Thankful user:


Page 1 of 2 12 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. [ Vencillio ] Help adding Cerberus
    By DustinJameson in forum Help
    Replies: 2
    Last Post: 07-29-2016, 12:07 AM
  2. [ Vencillio ] Help adding newer items.
    By DustinJameson in forum Requests
    Replies: 0
    Last Post: 07-25-2016, 04:50 AM
  3. [Vencillio] Help with a few things.
    By mauler320 in forum Help
    Replies: 6
    Last Post: 06-23-2016, 10:41 PM
  4. Nvm.
    By uint32_t in forum Buying
    Replies: 5
    Last Post: 06-13-2016, 10:38 AM
  5. Replies: 1
    Last Post: 05-05-2016, 09:16 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
  •