ok im posting this here to save another thread.
the problem im having is to do with the new ores i am trying to add. I followed the FAQ on it closely and ive debugged a few errors. These are the errors i have reamining.
It is saying: The type or namespace name '<customIngot>' could not be found. (are you missing a using directive or an assembly reference.
this is the problem code:
Code:
public override BaseIngot GetIngot()
{
return new BlueSteelIngot();
}
same problem for thetwo other custom ores i have added.
also
Code:
new CraftResourceInfo( 605, 0, "BlueSteel", CraftAttributeInfo.BlueSteel, CraftResource.BlueSteel, typeof( BlueSteelIngot ), typeof( BlueSteelOre ), typeof( BlueSteelGranite ) ),
and the same also for my 2 other custom ores.
any help would be greatly appreciated.