1. If you have a problem and need help, create a new thread with a title that briefly describes the problem.
    Do not use titles like 'Help!' or 'I have a problem!'
    Dismiss Notice
  2. Hey Guest, is it this your first time on the forums?

    Visit the Beginner's Box

    Introduce yourself, read some of the ins and outs of the community, access to useful links and information.

    Dismiss Notice

Windows Ressources

Discussion in 'Server Help' started by Lokiliam, Feb 3, 2013.

  1. Lokiliam

    Lokiliam Catapult Fodder

    Messages:
    23
    hello,
    I would like to know how to replace ressources to make a teamdoor and stone-block with gold... for exemple it cost 10 gold for a teamdoor and 100 gold for a stone-block. ( not coins....the gold block)
    thank you for the reply.
     
  2. HardPenguin

    HardPenguin Horde Gibber

    Messages:
    310
    I am not sure is that even possible in current state of the game.
     
  3. Kouji

    Kouji Cold, Uncaring, Sadistic, Evil and Cruel Meanie Administrator Global Moderator Forum Moderator Tester
    1. MOLEing Over Large Estates - [MOLE]
    2. REKINS OF SEAS: Super Crew of Ultimate Havoking 2: Return of King of KAG: Chapter 420blazeit - REKIN

    Messages:
    2,910
    Go to your builder_blocks.cfg it's in your Base\Rules\Gamemodename folder:
    It should look like this:
    Code:
      # builder blocks
      
      # name; offset from world.png; resource_type 1; resource_type 2; resource_cost 1; resource_cost 2; requires horizontal num; requires vertical num
      
      @$blocks =   
      Spikes;			167;     0;    -1;    10;   0;    1;    1;
      Door;				128;     1;    -1;    30;   0;    1;    1;
      Trap Bridge;			176;     1;    -1;    20;   0;    1;    1;
      Castle Back;			 64;     0;    -1;     2;   0;    1;    1;
      Ladder;			144;     1;    -1;     2;   0;    1;    1;
      Castle Wall;			 48;     0;    -1;    10;   0;    1;    1;
      Gold Bullion; 		160;     2;    -1;    10;   0;    1;    1;
      Workshop;			146;     1;    -1;     2;   0;    3;    3;
      Wooden Wall;			196;     1;    -1;     5;   0;    1;    1;
      Wooden Back Wall;		205;     1;    -1;     1;   0;    1;    1;
    					  
    # resource_type:
    #		  none = -1
    #		  res_stone = 0
    #	  	  res_wood = 1
    #		  res_gold = 2
    #		  res_arrows = 3
    #		  res_bombs = 4			  	    
    
    In your case, you'd change the Door line from:
    Code:
     Door;				128;     1;    -1;    30;   0;    1;    1;
    To this:
    Code:
     Door;				128;     2;    -1;    10;   0;    1;    1;
    and the Stone block line from this:
    Code:
    Castle Wall;			 48;     0;    -1;    10;   0;    1;    1;
    to this:
    Code:
    Castle Wall;			 48;     2;    -1;    100;   0;    1;    1;
     
  4. HardPenguin

    HardPenguin Horde Gibber

    Messages:
    310
    Lol wut looked for this, I am fucking blind. Kouji the modder ftw.