Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Zeroeh.

Pages: [1] 2
1
Snippets / Re: Construction base
« on: April 01, 2011, 11:13:56 am »
OK.
I suppose on RK, no one accepts constructive criticism or compliments. 

2
Snippets / Re: Agility
« on: April 01, 2011, 11:11:17 am »
Quote
But atm you dont balance you run :/ Ill be fixing this up Unless somebody else wants to.
I fixed it so you can use it. ;)

3
Help / Re: Npc Dialogue
« on: April 01, 2011, 11:08:48 am »
Where you adding the case too?
Could I know the switch(?)?

4
Requests / Re: New project
« on: April 01, 2011, 11:07:01 am »
Skillcape emotes.

5
Snippets / Re: Agility
« on: April 01, 2011, 11:03:08 am »
Code: [Select]
   if(objectID == 2295){
         sM("You balance across the log!");
         walkTo(0, -7);
         startEmote(762);
         addSkillXP(50, 16);
            }
not sure startEmote exists in Delta, haven't worked with it in a long time.xD 762 is the emote for balancing.

6
Introduction / Re: Zeroeh. In The House
« on: April 01, 2011, 10:45:18 am »
Thank guys! :re:
If some time, you see me correcting people's code it's just that I try to improve people, so next time they actual use the improved code.
Don't think I'm trying to act 'LAIKE A BOSS'.

7
Snippets / Re: Construction base
« on: April 01, 2011, 10:38:14 am »
Looks good.
It's easy to make it into a dialog.
The part that you said "public boolean inConstruction() {"
You don't need to write that whole thing.

For example;
Code: [Select]
} // end the piece of code above, let's say it exists.
if(inConstruction() && playerLevel[11] < 0) {
triggerTele(3222, 3222, 0); // Teleports the player to lumbrudge xD.
}
Sorry if I misunderstood.
Hope you get my point, ;).

Teleporting them to lumbridge for being in the construction area and having a skill level less than 0? I fail to see the point. Am I missing something?
I was just trying to tell him where to use inConstruction() since he stated that you need to do the whole "public boolean inConstruction()". :)

8
Tutorials / Re: [DELTA] Object Thieving! [DELTA]
« on: April 01, 2011, 10:28:14 am »
You're unstoppable!
Great tutorials mate!
My way;
Code: [Select]
switch(objectID) {
case 4876:
if(misc.random(3)== 1){
TheifStall("General stall", "and recieve some coins", 1, 50*playerLevel[17], 995, misc.random(3125), 0x340);
break;

case 4877:
if(misc.random(3)== 1){
TheifStall("Magic stall", "and recieve some coins", 41, 100*playerLevel[17], 995, misc.random(6250), 0x340);
break;

case 4878:
if(misc.random(3)== 1){
TheifStall("Scimitar stall", "and recieve some coins", 72, 200*playerLevel[17], 995, misc.random(12500), 0x340);
break;

case 4874:
if(misc.random(3)== 1){
TheifStall("Crafting stall", "and recieve some coins", 93, 400*playerLevel[17], 995, misc.random(25500), 0x340);
break;

Cleaner.

9
Tutorials / Re: [DELTA] Full Dharok effect! [DELTA]
« on: April 01, 2011, 10:19:22 am »
Looks good!
I'm just thinking why is there a big gap in;

I couldn't figure out how to ZOOM out on eclipse, decided to use NotePad++.

10
Requests / Re: New project
« on: April 01, 2011, 10:14:25 am »
I recommend for you to put no custom items.
(Excluding RS items such as PvP swords and other stuff)

11
Introduction / Re: Zeroeh. In The House
« on: March 31, 2011, 10:58:44 am »
Thanks, herp. ;)

12
Thanks, mate.

13
Hello.If anyone wishes to help my server (GFX wised) please help me make a banner. :hurr:
I totally suck at graphics.
I need a banner saying;
PersiaScape
Buttom of PersiaScape: Ultimate PK'ing Experience
I'll Fame++ :uj:

14
Introduction / Zeroeh. In The House
« on: March 31, 2011, 09:33:56 am »
Hello!
I'm new to Rune Kingdom.
I like programming.
My hobbies and playing soccer.
I'm a male.
My passport number is: ..

15
Snippets / Re: Construction base
« on: March 31, 2011, 07:35:07 am »
Looks good.
It's easy to make it into a dialog.
The part that you said "public boolean inConstruction() {"
You don't need to write that whole thing.

For example;
Code: [Select]
} // end the piece of code above, let's say it exists.
if(inConstruction() && playerLevel[11] < 0) {
triggerTele(3222, 3222, 0); // Teleports the player to lumbrudge xD.
}
Sorry if I misunderstood.
Hope you get my point, ;).

Pages: [1] 2