Home   Help Search Login Register  

Author Topic: Putting Names of towns on island map  (Read 565 times)

0 Members and 1 Guest are viewing this topic.

Offline scud

  • Members
  • *
Putting Names of towns on island map
« on: 11 Jun 2003, 06:14:20 »
Just wondering how it is done -
I can't find it in wrp.txt
Those that know - say nothing. Those that know nothing - tell all.

Leone

  • Guest
Re:Putting Names of towns on island map
« Reply #1 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)

 :)

Offline scud

  • Members
  • *
Re:Putting Names of towns on island map
« Reply #2 on: 11 Jun 2003, 21:14:18 »
thanking U very much so ;D
Those that know - say nothing. Those that know nothing - tell all.