Default Skins: Default | Black | Red | Green | Brown | Lavender

Techno Skins: Black | Blue | Brown | Green | Orange | Pink | Purlple | Red | Turquoise

Light Skins: Blue | Brown | Golden | Lilac | Navy | Olive | Red | Rose | Silver | Turqouise | Violet

Other Skins: Helios Blue | Helios Green | Helios Purple | Helios Red | Blue Mousse | Camo | Chronicles | Red Fire | Rusted | Grey and Blue | Grey and Green | igOH Mimic | Vista Mimic
Supernovadelta
April 19, 2024, 02:48:49 am
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Forum Help Search Arcade Gallery Links Staff List Login Register  
  Show Posts
Pages: [1] 2
1  Main Category / Questions / Re: Can you use wireless ip? on: September 05, 2008, 01:01:03 am
Quote
Depends what kind of wireless operator he is using.The command prompt might show him something completly different.Try going to one of the portforwarding sites.
I agree.
2  Main Category / Suggestions / Add a shoutbox. on: September 05, 2008, 01:00:08 am
Supernovadelta it would be great if you can add a shout box,you have already added the closing and opening,the adding should be no problem for you?
3  Main Category / Polls / Re: faster training or slower training? on: September 05, 2008, 12:58:16 am
Whats this for?
I'll choose faster training.
4  Other / Tutorials. / Making some equipment working. on: September 05, 2008, 12:54:07 am
Base:  Sdv2 (Base)
Tutorial: 3/10
Requirements: A brain,highest Eclipse.

Download my equipment guide here:
Equipment Guide

Search for:
Code:
   indigo()
break;
After the last }
Declare a private inter boolean.

Code:
private boolean = equipment;
 

The code private boolean = equipment; is a semi brief of the original and makes it easier to edit and read.

Now all you have to do is search for the equipment previously added,and add your own there.

Please post any errors,if you get them.

5  Requests / Moparscape Server Requests / Re: Project 16. v.3 I am looking for it. on: September 05, 2008, 12:46:24 am
I agree,try coding stuff your self for once.
Go on the Moparscape section on these forums,there you might get some information.
6  Other / Projects / Dragons Lair SDV2 on: August 29, 2008, 11:50:45 pm
Dragons Lair SDV2

Source used: Sdv2 (Base)

11/08/2008
*Made binary adjustments.
*Made npc adjustments and areas.
*Added binary transmitters.

12/08/2008
*Started basic woodcutting(Added new Sdv2 methods)
*Created handled sockets and upgraded some packets.

13/08/2008
*Converted Eclipse format to a simple Run.bat file.
*Increased game capacity by 60%
*Adjusted woodcutting and logs.
*Created perfect drops(And pickups)
7  Other / Tutorials. / Adding Npc (Complete And Unabridged) on: August 11, 2008, 01:43:35 am
Adding Npc
Tutorial: 6/10 (If you don't know the Sdv2 so well you will fail.
Requirements:Highest Eclipse,and a good brain.
 
Make a new notepad,and save it as NPC.cfg as all files.And put this in the Skill folder.(The next part will screw up if you don't get this complete)
Use Eclipse to find this
Code:
public void phtUpperfield
And below the first { put this code:
Code:
npc = (locate npc.cfg);

Now you have to create a public void for the CFG because you will get an error saying (Identified cfg not allowed)
So underneath your other public voids,add this method which is ONLY for the Sdv2 (Based)
Code:
public void appendToCfg (String packets)

     InteriorWriter sw = null;
   
     try {
sw = new InteriorWriter(new FileWriter("Packets/npc.cfg", true));
               sw.write(npc);
               sw.newLine();
} catch (IOE Exceptions) {
           ioe.pilotStackTrace();
        }
    }
}



Now to explain some things to you about how the Sdv2 works with these codes.
The
Code:
InteriorWriter sw = null;
InteriorWriter is a base method which allows certain items to enter the source.This is important in Sdv2.
The
Code:
sw
is another kind of source but not exactly,it is a complaint which is just a normal argument,this will be enabled through out the session.It briefly tells the server if something is wrong with the item (Npc.cfg) it should stop running.The
Code:
null;
is just a statement.

Code:
     try {
sw = new InteriorWriter(new FileWriter("Packets/npc.cfg", true));
^^That part is the code that allows the method to locate where you want it to run from,as you can see the "Packets/npc.cfg" This must be included in the method that we are using.The true; sends the code successfully.
Code:
 sw.write(npc);
               sw.newLine();
} catch (IOE Exceptions) {
           ioe.pilotStackTrace();
        }
    }
}

The sw.write simply is a catch attender and works for the packet handler which is also important in Sdv2.
The sw.newLine is when you edit something in Npc.cfg it saves it for you.
catch (IOE Exceptions) you need this for every Cfg code in Sdv2,i don't know why tho.
The ioe.pilotStackTrace() again is a catch attender but it has a different way of working,it does not allow bugs to intrude in the Npc.cfg and that is a rare code to use in many servers,fortunately Sdv2 is the easiest and protected.



If you get any reports of errors,please post them here.

Thank you.
8  Other / Tutorials. / Re: Adding simple Binary adjustments. on: August 11, 2008, 01:18:10 am
Good 1st tutorial,keep it up.Does Sdv2 have the same methods as for the Special attack method?
9  Other / Tutorials. / Re: What is Sdv2? on: August 09, 2008, 01:34:57 am
Thanks for the new tutorial on how to fix some errors in Eclipse enabled with Sdv2:

For those who are having some errors,please refer to this board:
http://supernovadelta.smfforfree4.com/index.php/topic,106.0.html
10  Other / Tutorials. / Re: Fixing Eclipse Problems When Enable With Sdv2 on: August 09, 2008, 01:33:30 am
Thank you so much for the first tutorial on how to fix some running problems,i really appreciate it,your the best. Grin
11  Main Category / Homework Board / Re: Mathamatic Formulas And Additional Help. on: August 09, 2008, 12:39:23 am
This looks realy hard.

Not realy,if you know your algebra.
I agree,you got to know your algebra.
If you want to succeed in life,I'll have to agree with you people.
12  Other / Tutorials. / Re: What is Sdv2? on: August 09, 2008, 12:28:01 am
This looks very interesting,but the only problem is that i get stuck on this question:
Q.I can't run the Project!!

Can you please help me,i have the right eclipse.
13  Other / Tutorials. / Re: Running RS2DV with Eclipse. on: August 09, 2008, 12:26:07 am
Sweet thanks for the tutorial  Grin Now i finally know what RS2DV is...
No problem,i use eclipse more often than Ant,and you should too Wink
14  Other / Tutorials. / Running RS2DV with Eclipse. on: August 05, 2008, 12:48:58 am
Original Topic can be found Here
I'm using this layout so this tut won't be locked...

Description: To run Rs2d
Difficulty: 1/10
Assumed Knowledge:None, well, to click with mouse...
Files/Classes Modified:None

Step 1
Download Eclipse Here
than Install it and open it....

Step 2
Make new Java Project like this


Step 3
A window will pop up and than do this


Step 4
Now you should have your project inside Eclipse. Now we need to Run it. Click on this sign.
First of all highlight your project, and than do this


Step 5
When you run it as Java Application, new window will pop up.
Select what's show on picture than click ok


Step 6
You're ready to log in.

15  Other / Tutorials. / Running RS2DV with Ant on: August 05, 2008, 12:46:25 am
You can find the original topic Here

Well people having trouble with the other stuff to run it i think this is the easyest way for you to code and run a rs2d http://www.rune-server.org/showthread.php?t=74118 Downloaded from there

First download apache ant from http://ant.apache.org/bindownload.cgi
Put that foldar into your C:/ and name it apache so it looks like this




and basicly all you will need to do is


then go to



Make your Path to
Code:
C:\apache\bin
So it looks like


Now in your RS2D foldar put a batch file called compile with the stuff of
Code:
set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_05
C:\apache\bin\ant -buildfile .\build.xml
pause
inside of it that will compile the rs2d souce
and make a run.bat with this inside of it

Code:
@echo off
ant run
pause

Congratz you have just made your server run from apache ant



Pages: [1] 2
Elaborate Search Engine

Directories
Yahoo
DMOZ
Snap

Search Engines
Alta Vista
Direct Hit
Lycos
Excite

Webcrawler
Go.com
DejaNews
Google
Meta Searches
Go2Net
Search.Com
Mamma
DogPile

Enter text to find:

AquaAngular was created by deathwilldie of Ultimate Graphics
Shoutbox
[Open]


Fill your Birth-Date in in the below fields

Month Day Year Hour



This is how long you live:

Months :
Weeks :
Days :
Hours :
Minutes :
Seconds :
Milliseconds :

Your next birthday is over:

Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum

Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy