od jungova » čtv 13. čer 2019 15:07:53
Uz neposilat, nekdo mi je poslal. Ale zlobi v nich script. Nekde to tady na Forum popisuju. je to tohle
Strab Blinker Aus,<kuid:69084:24020>
Strab Blinker Links,<kuid:69084:24021>
Strab Blinker Rechts,<kuid:69084:24022>
Strab Quitschen Aus,<kuid:69084:24026>
Strab Quitschen An,<kuid:69084:24027>
Strab Rollbandsteuerung,<kuid:69084:24028>
Obsahuji blinker.gs, a obsah scriptu, tady konkretne kuid:69084:24020 :
include "buildable.gs"
class blinker isclass Buildable
{
public void Init(void)
{
AddHandler(me,"Object","Enter","trigger");
}
public void trigger(Message msg)
{
Train train = cast<Train> msg.src;
if (train.GetAutopilotMode()>1)
{
Vehicle[] myVehicles = train.GetVehicles();
int i;
for (i=0; i < myVehicles.size(); i++) //For each
{
PostMessage(myVehicles[i],"Blinker","aus",0.0f);
}
}
}
};
++++
soubor obsahuje
10 -- txt
10 -- tga
blinker.gs -- script
config -- txt
speed.im -- im
jungova, kuid348682