Jump to content

Deleting Original Map Files


MADCastro.2010

Recommended Posts

you cant do it. if you need remove some rubbish from the map you can replace dff and col of such objects to empty models and collisions via scripting (you need empty dff file and empty col file).

How i can do this? Learn me please.

i think he need only to remove few certain types of objects. this is not a problem.

That's what i want to do, i want to remove old boxes and destroyed cars (like in the front of Ryder's house).

Link to comment

get any 3d moddeling software, create new model, and dont do anything - just save it in San Andreas dff format, or any format you can convert to SA dff later. I heard that one 3d application from google (cant remember its name) can do this.

now use Collision Editor by Steve-m to create empty collision file.

use this client side script to replace your objects:

  
col_ = engineLoadCOL("empty.col") 
dff_ = engineLoadDFF("empty.dff", 0) 
  
engineReplaceCOL(col_, 3781) 
engineReplaceModel(dff_, 3781) 
engineReplaceCOL(col_, 3782) 
engineReplaceModel(dff_, 3782) 
engineReplaceCOL(col_, 3783) 
engineReplaceModel(dff_, 3783) 
  

(more about creating resources)

ofc replace that numbers 3781, 3782, 3783 with object ids

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...