Read

Joined
Jun 17, 2009
Messages
2,724
Reaction score
336
I am using All-star source to make a runescape private server and i will like to know how do I:

1.Make a membership system
2.Make a Membership Shop
3.Make a Staff Shop
4.How to add custom items
5.Make a makemem,dropmem,memzone,announcements,mute,unmute,ban and unban command because i try those commands(mute to unban) and didn't get a result
6.Make a membership training area
7.Membership zone(Where the shop and training will be)
8.How to add clan chat
9.A party area
10 a portal for jad and membership zone
 
1. Make a new variable in client.java(317) boolean isMember; or in player.java(508) named the same thing
2. In the shop case, just add a if bracket around the code: if (isMember)...
3. Same as 2, but with player rights instead
4. Look for a cache tutorial, as I don't support custom items
5. Commands.java for 508, or the customCommand (String command) method in client.java for 317
6. Make area inaccessable to others, and get there by teleport, which is mem only
7 same as 6.
8. In 508, you need the proper packets, in 317, just add a series of commands to do it
9. Use party room, and fix party lever
10. Create a portal as a global object, then add the first click code to it to teleport you where you need to go
 
Back