ajax211
July 19th, 2010, 06:56
CHAPTERS
Chapter 1: (Basics to npcs)
Chaper 2: (client.java coding)
Chapter 3: (basics to commands)
Chapter 4: (Some basic tips to make your server great)
p. 1.-(Adding an npc)
Dfficulty:1/10 beginers maybe 1.5
Coded:autospawn.cfg
Ok adding an npc is very simple.
•Code:
spawn = 2 2034 5041 0 0 0 0 0 1
Explination:
spawn = 2 (the npc id)
2034=x coords
5041= y coords
0 0 0 0 0=The 0s are if you want your npc to move you add from 1 coord to the other
•
P.1.1-(making npc drops)
Diffculty 1/10
Coded: npcdrops.cfg
•Code:
//abbysal
npcdrop = 2265 526 1 100
Explination:
npcdrop = 2265 (npc id)
526=(iteam id)(bones)
1=(how much of the iteam)
100=(percentage of iteam droped)
Tip:if iteam is rare keep at 1 percent!
•
~CHAPTER 2~
P.1 (changing log in message)
Diffculty: 1/10
Coded:all client.java
This is plain and simple
•Code:
sM("Welcome to Sythz");
sM("forums: BLABLA!");
sM(" ::talk( message to everyone), ::food!");
sM("[Last Update]: duping is mostly fixed & equiptment stat works now!");
sM("[Commin Updates]: A new home plus new custom mini games");
sM(" Most recent update donor island so go and donate");
U serch wt ever ur old login used to be then replace in between brackets what u want
•
p.1.1 (Adding global objects)
Diffculty 1/10
Code:
•makeGlobalObject(3509, 9496, 3831, 0, 10);
EXPLINATION:
3509=x coords
9496=y coords
3831=obj id
0=style
10=style
•
p.2 (deleting objects)
code:
•
deletethatobject(3084, 3246);
3084=x coords
3246= y coords
•
~~Chapter 3~~ (basics to comands)
Diffculty:1/10 but 2/10 for beginers
Coded:all client.java
Ok now each command has 2 main parts
heres 1 example of a code
Code:
if(command.startsWith("pickup") && playerRights >= 1) {
Explination
if(command.startsWith("pickup")=i think that explains its self
&& playerRights >= 1) { =the rights of the player have to be 1 to do this command
now making ur own commands will be hard if your new but soon youl know how
•Rights:
0=normal
1=mod
2=admin
3=owner/co owner
4=hidden
•
The most easiest command to make is a command that gives an item
Code:
Code:
}
if (command.startsWith("food") && playerRights >= 0) {
addItem(392, 1000);
addItem(386, 1000);
}
Explination:
•We explained the first line in the begining now we are going to learn wt it does
addItem=add an iteam when somone uses the command
392=id of the iteam
1000=amount of the iteam
this command is saying when somone types ::food he will get 1000 mantas / 1000 sharks
•
~~Chapter 4~~ (tips)
•1.NEVER syipk somones server it makes your server look despret and dumb..
2.Try getting your own webclient at rs-ps
Only the registered members can see the link. (plz tell me if i have to remove this link)
3.Try not adding to many custom items to prevent lagg
4.always keep your server on autorestart evrey 30mins
5.Do not do alot of d partys to get peopel cause tht will ruin your economy
6.do not have a party hat shop keep stuf rare
7.try making your xp per hit not to fast not to slow
8.REMOVE PURE if u have it or make it mod+
9.Try to get votes on runelocus or buy a banner from rs-ps
10.Update weekly and try to be diffrent from other servers so ppl stay
Thanks for reading my first post
Chapter 1: (Basics to npcs)
Chaper 2: (client.java coding)
Chapter 3: (basics to commands)
Chapter 4: (Some basic tips to make your server great)
p. 1.-(Adding an npc)
Dfficulty:1/10 beginers maybe 1.5
Coded:autospawn.cfg
Ok adding an npc is very simple.
•Code:
spawn = 2 2034 5041 0 0 0 0 0 1
Explination:
spawn = 2 (the npc id)
2034=x coords
5041= y coords
0 0 0 0 0=The 0s are if you want your npc to move you add from 1 coord to the other
•
P.1.1-(making npc drops)
Diffculty 1/10
Coded: npcdrops.cfg
•Code:
//abbysal
npcdrop = 2265 526 1 100
Explination:
npcdrop = 2265 (npc id)
526=(iteam id)(bones)
1=(how much of the iteam)
100=(percentage of iteam droped)
Tip:if iteam is rare keep at 1 percent!
•
~CHAPTER 2~
P.1 (changing log in message)
Diffculty: 1/10
Coded:all client.java
This is plain and simple
•Code:
sM("Welcome to Sythz");
sM("forums: BLABLA!");
sM(" ::talk( message to everyone), ::food!");
sM("[Last Update]: duping is mostly fixed & equiptment stat works now!");
sM("[Commin Updates]: A new home plus new custom mini games");
sM(" Most recent update donor island so go and donate");
U serch wt ever ur old login used to be then replace in between brackets what u want
•
p.1.1 (Adding global objects)
Diffculty 1/10
Code:
•makeGlobalObject(3509, 9496, 3831, 0, 10);
EXPLINATION:
3509=x coords
9496=y coords
3831=obj id
0=style
10=style
•
p.2 (deleting objects)
code:
•
deletethatobject(3084, 3246);
3084=x coords
3246= y coords
•
~~Chapter 3~~ (basics to comands)
Diffculty:1/10 but 2/10 for beginers
Coded:all client.java
Ok now each command has 2 main parts
heres 1 example of a code
Code:
if(command.startsWith("pickup") && playerRights >= 1) {
Explination
if(command.startsWith("pickup")=i think that explains its self
&& playerRights >= 1) { =the rights of the player have to be 1 to do this command
now making ur own commands will be hard if your new but soon youl know how
•Rights:
0=normal
1=mod
2=admin
3=owner/co owner
4=hidden
•
The most easiest command to make is a command that gives an item
Code:
Code:
}
if (command.startsWith("food") && playerRights >= 0) {
addItem(392, 1000);
addItem(386, 1000);
}
Explination:
•We explained the first line in the begining now we are going to learn wt it does
addItem=add an iteam when somone uses the command
392=id of the iteam
1000=amount of the iteam
this command is saying when somone types ::food he will get 1000 mantas / 1000 sharks
•
~~Chapter 4~~ (tips)
•1.NEVER syipk somones server it makes your server look despret and dumb..
2.Try getting your own webclient at rs-ps
Only the registered members can see the link. (plz tell me if i have to remove this link)
3.Try not adding to many custom items to prevent lagg
4.always keep your server on autorestart evrey 30mins
5.Do not do alot of d partys to get peopel cause tht will ruin your economy
6.do not have a party hat shop keep stuf rare
7.try making your xp per hit not to fast not to slow
8.REMOVE PURE if u have it or make it mod+
9.Try to get votes on runelocus or buy a banner from rs-ps
10.Update weekly and try to be diffrent from other servers so ppl stay
Thanks for reading my first post