Questions. (Farming Simulator 15)
Hello friends!I have a few questions before buying the game Farming Simulator 2015 for PS3.
1. Is there Russian language in the game?
2. Is it possible to hack the game for money?
P. s I saw one foreigner as he has in the game 9999999 money, I understand that he downloaded and installed the save game. Possible or not?
3. the + and - version of the game on the PS3?
Thank you in advance.
Timur Monolith
1.for a huge amount of money is fashion
2. Russian language should be,
3. +licenses :1)a license 2) multiplayer
- it is a pity money
+ game on PS 3 don't know , that play on PC
Timur Monolith
About the money,go to my documents there's a folder My Games open choose a game(eg.FS 15 17) then open the folder savegame(number 1 is the map which started first,the other savegame this your other cards).Opening a savegame choose careerSavegame.xml open it with Notepad in the search bar, type money after finding you will show how many have you got money in the game change the value to something that will appeal to and save in Notepad.This is all done without running the game.When you run the game you will have as much money as introduced in the change.
Hello!I apologize in advance,if not in the writing. Prompt,please,where can I sell bales on the map of Yanova Dolina FS 15?
SOMEONE TELL ME WHY ON THE MAP THE GIFTS OF THE CAUCASUS IS NOT SOLD MILK, AND HOW TO FIX IT?
Hello! Prompt, please ,can I keep the chips on the map of Varvarovka, if so, where.To sell, I found, and here's where to keep up. ( thanks in Advance for your answer .
Hello! Help with script for adding money.
With every new key pressed, increases the amount.
Is it possible to cancel actions which are repeated at random. Generally to make a mod disposable. Thank you!
LS15Money = {};
Спойлерfunction LS15Money:loadMap(name)
self.money_amount = 0;
end;
function LS15Money:keyEvent(unicode, sym, modifier, isDown)
if bitAND(modifier, Input.MOD_ALT) > 0 and bitAND(modifier, Input.MOD_ALT) > 0 then
if InputBinding.isPressed(InputBinding.HONK) then
self.money_amount = 100000;
end
if self.money_amount ~= 0 and g_server == nil then
g_client: getServerConnection(): sendEvent(LS15MoneyEvent:new (self));
end;
end;
end;
function LS15Money:update(dt)
if self.money_amount ~= 0 and g_server ~= nil then
g_currentMission: addSharedMoney (self.money_amount);
self.money_amount = 0;
end;
end;
function LS15Money:draw()
end;
function LS15Money:deleteMap()
end;
LS15Money function:mouseEvent (posX, posY, isDown, isUp, button)
end;
addModEventListener(LS15Money);
LS15MoneyEvent = {};
LS15MoneyEvent_mt = Class(LS15MoneyEvent, Event);
InitEventClass(LS15MoneyEvent, LS15MoneyEvent);
LS15MoneyEvent function: readStream(streamId, connection)
self.object = LS15Money;
self.object.money_amount = streamReadInt32(streamId);
end;
LS15MoneyEvent function:writeStream(streamId, connection)
streamWriteInt32(streamId, self.object.money_amount);
end;
function LS15MoneyEvent:new(object)
local self = LS15MoneyEvent:emptyNew()
self.object = object;
return self;
end;
function LS15MoneyEvent:emptyNew()
local self = Event:new(LS15MoneyEvent_mt);
self.className=LS15MoneyEvent;
return self;
end;