Thread: Modding SW3?
View Single Post
  #22  
Old 04-26-2014, 08:49 AM
Neo Genesis Neo Genesis is offline
Approved Member
 
Join Date: Apr 2014
Posts: 74
Smile

Quote:
Originally Posted by Simbal View Post
The selling Prices are in Scripts>Include>gw.script

For the Mothership Prices -> search for the Function "function _buy_msGW(nameMS)"

For the Fighters Prices -> search for the Function "function buy_fig(nameFIG)"

For the Equipment -> search for the Function "function buy_ms_eq(eq_name)"

The Price is the number behind the Ship/Equipment name

Code:
--Motherships function
function _buy_ms_GW(nameMS)
  local tab_MS = {
	{"Alien_Dreadnought_0",1500000},

--Fighter function
function buy_fig(nameFIG)
  local tab_FIG = {
	{"Gunslinger_mk2_black0",280000},

--Equipment Function
function buy_ms_eq(eq_name)
  local tab_ms_eq = {
	{"THGK3",350000},


Well Thanks but I Already Knew That . What I Meant By Selling Prices is When you buy a fighter for lets say 50000 credits . but you can only sell it for 25000 credits. how do i change the price when I want to sell Fighters/Missiles/guns/Equipment
Reply With Quote