hat schon jemand die BuildTradingStation von xscripting.com getestet?
ich hab das problem, dass ich dort von jeder ware nur 2 einheiten lagern kann

wer noch?
gibts schon ein script zum "frachtraum einer station vergrößern" ?

Moderators: Scripting / Modding Moderators, Moderatoren für Deutsches X-Forum
Code: Select all
Script k.create.station
Version: 1
for Script Engine Version: 22
Description
Create a Staion
Arguments
1: loc , Var/Sector Position , 'Select Position'
2: st , Var/Station Type , 'Select Station Type'
3: ra , Var/Race , 'Race owning the Station'
4: ns , Var/Number , 'Amount of 125MW Shields'
Source Text
001 * writer - kaia
002 $x = $loc[0]
003 $y = $loc[1]
004 $z = $loc[2]
005 $sec = $loc[3]
006
007 $stat = create station: type=$st owner=$ra addto=$sec x=$x y=$y z=$z
008
009 $du = $stat -> install $ns units of 125 MW Shield
010
011 return null