OFPEC Forum

Addons & Mods Depot => OFP - Addons & Mods General => Topic started by: scud on 11 Jun 2003, 06:14:20

Title: Putting Names of towns on island map
Post by: scud on 11 Jun 2003, 06:14:20
Just wondering how it is done -
I can't find it in wrp.txt
Title: Re:Putting Names of towns on island map
Post by: Leone on 11 Jun 2003, 20:18:28
Quote
class CfgWorlds
{
   class DefaultWorld {};
   class YourIsland: DefaultWorld
   {
      access=3;
blah blah blah....
      class Names
      {
         class SomethingAppropriate
         {   
            name="NameHere";
            position[]={7154,2745,50};
         };
         class SomethingElseAppropriate
         {   
            name="AnotherName";
            position[]={6583,10633,50};
         };

      };

   };
};


Find the position in WRPEdit by select the point where you want it and noting down the numbers at the bottom of the screen (X, Y, Z)

 :)
Title: Re:Putting Names of towns on island map
Post by: scud on 11 Jun 2003, 21:14:18
thanking U very much so ;D