Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz
You last visited: Today at 09:22

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



what is the file extension

Discussion on what is the file extension within the Rappelz forum part of the MMORPGs category.

Reply
 
Old   #1
 
lilnani's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 597
Received Thanks: 174
what is the file extension

hello


what is the file extension for data.001 i use winrar but it give me error

any one know to edit the game models
lilnani is offline  
Old 06/16/2011, 17:47   #2
 
Anime Creature's Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 118
Received Thanks: 22
Quote:
Originally Posted by lilnani View Post
hello


what is the file extension for data.001 i use winrar but it give me error

any one know to edit the game models
where the hell do you think you could easily extract the data files with winrar?
these are compressed/mixed data stream files and for now, only the rappelz client can extract them
these files include truevision x-files (textures), dx meshes (3d objects) and much more
i know this because ive tried to extract them, and got only the truevision x-files (usually they were these numbers when u get hit, or when you block or been healed =D)

read these files sequential, but they have headers, checksums, etc... not easy to explain it^^
Anime Creature is offline  
Old 06/16/2011, 17:52   #3

 
Musta˛'s Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 542
Received Thanks: 424
lool , you can't just use winrar
Musta˛ is offline  
Old 06/16/2011, 18:11   #4
 
Anime Creature's Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 118
Received Thanks: 22
i could write an example on how to read them, but this is now for programmers =)
its not really working as you want, it only should show you how you could do it
i tried it in PHP and in Borland Delphi Pascal

put these files on a PHP enabled webserver (i.e.: WAMP) along with a data file and run control.php (which then uses image.php to build an image)
you can edit width, height, etc

control.php
Code:
<? 
	//
	// written by: Animecreature
	//
	$filename = "";
	$position = 0;
	$width    = 640;
	$height   = 480;

	if (isset($_POST['Update']))
	{
		$filename = $_POST['Filename'];
		$position = $_POST['Position'];
		$width    = $_POST['Width'];
		$height   = $_POST['Height'];
	}

	if (isset($_POST['Back']))
	{
		$filename = $_POST['Filename'];
		$position = $_POST['Position'] - (($_POST['Width'] * $_POST['Height']) * 4);
		$width    = $_POST['Width'];
		$height   = $_POST['Height'];
	}

	if (isset($_POST['Next']))
	{
		$filename = $_POST['Filename'];
		$position = $_POST['Position'] + (($_POST['Width'] * $_POST['Height']) * 4);
		$width    = $_POST['Width'];
		$height   = $_POST['Height'];
	}

	$command  = "image.php?f=$filename&p=$position&w=$width&h=$height";
?>
<form action="control.php" method="POST">
 <table cellspacing="0" cellpadding="0" border="0">
  <tr>
   <td align="left" valign="top">
    <table cellspacing="0" cellpadding="0" border="0">
     <tr>
      <td align="left" valign="top"><b>Filename:</b></td>
      <td align="left" valign="top"><input type="text" name="Filename" value="<?=$filename?>" /></td>
     </tr>
     <tr>
      <td align="left" valign="top"><b>Position:</b></td>
      <td align="left" valign="top"><input type="text" name="Position" value="<?=$position?>" /></td>
     </tr>
     <tr>
      <td align="left" valign="top"><b>Width:</b></td>
      <td align="left" valign="top"><input type="text" name="Width" value="<?=$width?>" /></td>
     </tr>
     <tr>
      <td align="left" valign="top"><b>Height:</b></td>
      <td align="left" valign="top"><input type="text" name="Height" value="<?=$height?>" /></td>
     </tr>
     <tr>
      <td align="left" valign="top">&nbsp;</td>
      <td align="left" valign="top"><input type="submit" name="Update" value="Update" /></td>
     </tr>
     <tr>
      <td align="left" valign="top">&nbsp;</td>
      <td align="left" valign="top"><input type="submit" name="Back" value="Back" /></td>
     </tr>
     <tr>
      <td align="left" valign="top">&nbsp;</td>
      <td align="left" valign="top"><input type="submit" name="Next" value="Next" /></td>
     </tr>
    </table>
   </td> 
   <td align="left" valign="top">
    <img src="<?=$command?>" border="0" alt="" title="">
   </td>
  </tr>
 </table>
</form>
image.php
Code:
<? 
	//
	// written by: Animecreature
	//
	$filename = (isset($_GET['f']) ? $_GET['f'] : "");
	$position = (isset($_GET['p']) ? $_GET['p'] : 0);
	$width    = (isset($_GET['w']) ? $_GET['w'] : 640);
	$height   = (isset($_GET['h']) ? $_GET['h'] : 480);
	header('Content-type: image/png');
	$image = imagecreatetruecolor($width, $height);
	$color = imagecolorallocate($image, 0, 0, 0);
	imagefill($image, 0, 0, $color);
	imagecolordeallocate($image, $color);
	if (file_exists($filename))
	{
		$handle = fopen($filename, "r");
		if ($handle)
		{
			fseek($handle, $position, SEEK_SET);
			for($y = 0; $y < $height; $y++)
			{
				for($x = 0; $x < $width; $x++)
				{
					$red   = ord(fread($handle, 1));
					$green = ord(fread($handle, 1));
					$blue  = ord(fread($handle, 1));
					$alpha = ord(fread($handle, 1));
					$color = imagecolorallocate($image, $red, $green, $blue);
					imagesetpixel($image, $x, $y, $color);
					imagecolordeallocate($image, $color);
				}
			}
			fclose($handle);
		}
	}
	imagepng($image);
	imagedestroy($image);
?>
Anime Creature is offline  
Old 06/18/2011, 06:14   #5
 
Tetris's Avatar
 
elite*gold: 0
Join Date: Nov 2006
Posts: 42
Received Thanks: 70
Me and a friend of mine are working on a 3rd party, out of game web based GM tool so we don't have to rely on the glitchy gameserver to add items, and such. We needed to extract data packs and found an un-packer that was useful for us. First off, As mentioned before by Soleil, use HJ Spliter to combine the data packs, then use this Unpacker to open the data pack and extract.

.

The Unpacker contains a program inside it called hyper ripper which I believe does all the work itself. There is a wealth of images in there, so please enjoy.
Tetris is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Skylab bot as browser extension
08/30/2011 - DarkOrbit - 15 Replies
Hey, Normally, most bots run as standalone applications. Since DO is a web game, I am planning to build a skylab bot as a browser extension (chrome and firefox). You will just need to go to your skylab page on your browser and set the resources, the bot (installed as extension) will take care of the rest. It's not a Pixel bot, and nor does it use packets, it simply submits the skylab page normally without you even knowing it. I would like some feedback regarding this idea. Would a...
.IBF File Extension
01/07/2011 - FFXI Exploits, Hacks, Bots, Tools & Macros - 1 Replies
I've been surfing these forums trying to find some info.. I am new to final fantasy xi and even newer as how to use hacks for this game.. Whats up with these files and the .ibf extensions? Do I need to download a program to open them up? I was trying to use the speed hack and the download is a .ibf... Can anyone help me out? Possibly PM me or shoot me a message on MSN? I'm on the now.. [email protected].. Thanks for any help!
CE extension?
06/16/2010 - Dekaron - 1 Replies
what extension is CE? can i put the scripts and save on notepad?
.IBF Extension
02/03/2009 - General Gaming Discussion - 0 Replies
Hi, first i´m telling you that i´m not english. I have problems with this extension. I have the program Instant Backup. I double-click the archive and it appear a window, but i didn´t know what to do. This is the link ---> http://www.elitepvpers.com/forum/ultima-online/3467 7-nofear-s-injection-vfinal.html PD: Can someone put it on a server, rapidshare or other, in .exe extension
What extension does .JZP go to???
05/30/2008 - General Coding - 10 Replies
Found an ftp ip for Archlord patch/update files. ftp hosting site for them.. but they end in dot JZP here is 1 of them: Patch0071.JZP & here is a couple lines, if opened in notepad



All times are GMT +1. The time now is 09:23.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.