The online racing simulator
Searching in All forums
(117 results)
Caleb642
Demo licensed
Hello felplacerad, with ubuntu my controller worked out of the box with Bluetooth, just plugged in a USB, paired, then launched ets2/ats and even Trackmania nations forever(wine) worked without any issue, though I will look into sixpair to see if I can get it to work <3 thanks for the advice
pedro.de.marco
S2 licensed
Notes:
1-The purpose of this test is to understand how the server works in Virtual Environment, to be able to run local or on internet.

2- When i say host-OS, the OS that vbox is installed on. Guest-OS, the one that runs DCon.
The host (server) runs on Guest-OS, the game running on Host-OS is the guest-player. I hope that the reader does not confuse that!

Hi. Checking things again. I created a copy of the setup.cfg , setup-1.cfg
I changed the following settings:
/hostname = LFS
/ip=127.0.0.1

The local vps (linux in vbox) is a commandline only and it boots fast, which means I can change settings fast.

I ran the command " wine DCon.exe /cfg=setup-1.cfg
wine DCon.exe /cfg=setup-1.cfg
Track loaded (BL1)
LFS-01 : BL1 race 5 laps (0)
Jul 11 11:07:57 2019
Handicaps :
Accept : 10.0.2.2
Received 53 : 10.0.2.2
Host Auth : 10.0.2.2
Authorised : 10.0.2.2 (pedro.de.marco)
Received 21 : 10.0.2.2
Connect : 10.0.2.2
Sent OK to new guest
_____________________
felplacerad:
this is on Guest-OS:

user1@mini:~$ ifconfig
enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.2.15 netmask 255.255.255.0 broadcast 10.0.2.255


the same interface name on Host-OS returns the local 192.168.x.y
And I don't have that em0 interface.

Ok. I guess that I have that 10.0.2.15 and I need to use it.
I add it to the cfg file. I guess that I will need to use the bridged mode which I don't know how.
_______________________

update : I also port forwarded UDP as well as TCP. the cfg is now setup-1.cfg as mentioned above. The game runs well. The local VPS is smooth using the least resource.
Last edited by pedro.de.marco, .
uiop
S2 licensed
Thanks felplacerad
It is working!
Rallylappen
S3 licensed
felplacerad:
We are the new group of SBF Virtuell bilsport Smile and we own the name "VGP" (Virtual grand prix)
You can look it up on Svenska bilsportsförbundets home page and see that "Virtuell bilsport" is up and running agen, but with new people working with it.
Last edited by Rallylappen, .
Anthoop
S2 licensed
Excellent...thankyou Felplacerad found exactly what I needed. Smile
felplacerad
S3 licensed
Found a tiny bug when shamelessly searching the forum for my own username:

https://www.lfs.net/forum/-1/search/felplacerad

The "Spoiler - click to reveal"-anchor for spoiler tags does not work in the search result view. Nothing happens.

I guess this event is missing:


function ()
{txtOb=document.getElementById(this.id+'T');if(!txtOb.style.display||txtOb.style.display=='none')
{this.innerHTML='Spoiler - click to hide';txtOb.style.display='inline';txtOb.style.visibility='visible';}
else
{this.innerHTML='Spoiler - click to reveal';txtOb.style.display='none';txtOb.style.visibility='hidden';}}

Smile
Last edited by felplacerad, .
LFS Reworked 2014 (Pack) - v0.1 10-28
peterjbruins
S3 licensed
I have been searching for the best textures and mods (that are allowed) available for LFS, and made this pack of it. This is a very early version, so expect some missing/outdated files. I'll add much more to the pack later.
It took me quite a lot of hours to rename all the DDS files to the current names that LFS recognises, because appearantly the DDS files were named [name]ATEST.DDS a while ago, and now it's [name]_ALP.DDS...


This pack includes:
Spoiler - click to reveal
  • Cars
    • FX by smove
    • XR by Lowris
    • UF by spenter
    • XF by spenter
    • LX by spenter
    • LX seats by Dudles
    • LX exhaust by teaz-R
    • RA by smove
    • FZ by spenter
    • FO by unseen
    • FB by DANIEL-CRO
    • RB by bmwe30m3
  • Sounds
    • Skid sounds by darkone, SSrv2Full, and another unknown author (repack by THE WIZARD DK)
    • Horns by PioneerLv
    • Engine sounds by unknown authors
  • Tracks
    • Trees by lfsrm
    • Tyres and sidewalls by CycloNe88
    • Kyoto by shimon-ifraimov & JOS[NL]
    • Advertisements by an unknown author
    • Blackwood by rockclan
    • Skies by saroman
    • Aston by shimon-ifraimov
  • Other
    • Cromo wheel by Jamesisinthehouse12 and Nacim
    • MoMo wheel by Boris Lozac
    • Reflections by yamakawa
    • Custom views by peterjbruins
    • Suits by felplacerad & Tonix
    • Setups by peterjbruins & unknown authors



I'd like to hear opinions and suggestions for the next release!
Here's a list of what features I planned to add later:
Spoiler - click to reveal
  • Automatic installer with options to disable specific parts of the pack
  • Skins
  • More track textures
  • Some LFS scripts. Like a menu where you can choose between diffrent key bindings (like drift mode, race mode, cruise mode...) (please give me your opinion about this, because I could make this but it would be quite a lot of work)
  • Sirens, (auto-off) turn signals installer, other Insim/outgage-based programs
  • Much more?




Download v0.1 from mega.co.nz
Instructions: Unzip the files into your LFS directory and overwrite all existing files!
Last edited by peterjbruins, .
Developer forum posts as RSS
felplacerad
S3 licensed
Although there are plenty of interesting discussions at this forum my main reason for coming here is to see what Scawen is up to. When the new forum was initially released I spent a couple of minutes on a userscript to highlight the developers' posts, but I figured I could do a little better.

So I wrote a little PHP-scraper that visits the profiles of the devs and collect their most recent posts and then publish the data in a RSS feed.

The feed is available here NO LONGER AVAILABLE.

... And if you'd like to extend on this here's the scraper:


<?php

/**
* Return the most recent posts by given user at lfsforum.net.
* Breakage-prone due to DOM-parsing! :)
*
* @author felplacerad
* @version 0.1
*/
class LfsForumScraper
{
public $posts;
protected $dom;
protected $cache;

/**
* Create a new DOMDocument object, and
* Read cache file into an array.
*/
public function __construct()
{
if (is_file('./scraper.cache') && time() - filemtime('./scraper.cache') < 600) die("No hammering!\n");

$this->dom = new DOMDocument();
libxml_use_internal_errors(true); // Disable libxml errors
$this->cache = (file_exists('./scraper.cache') ? file('./scraper.cache', FILE_IGNORE_NEW_LINES) : []);
}

/**
* Load HTML, evaluate XPath expressions and sanitize the input a bit
* (ie: remove element attributes and most tags)
* store seen post ids in cache file.
* Return posts that wasn't already seen.
*/
public function scrapeAuthor($targetAuthor = 'Scawen')
{
$url = "https://www.lfs.net/forum/-1/search/user:'$targetAuthor'";
$opts = array('http'=>array('header'=>"User-Agent: fel-notify/0.1"));
$context = stream_context_create($opts);

$this->dom->loadHTML(file_get_contents($url, false, $context));
$xpath = new DOMXPath($this->dom);

// Example: <div class="FPost">
$tags = $xpath->query('//div[@class="FPost"]');

foreach ($tags as $tag) {
$id = $xpath->query('./div[contains(@id, "Post")]', $tag)->
item(0)->getAttribute('id');

if (!in_array($id, $this->cache)) {
$topic = $xpath->query('./div/a', $tag)->
item(0)->nodeValue;

$tlink = $xpath->query('./div/a', $tag)->
item(0)->getAttribute('href');

$plink = $xpath->query('./div[@class="FPostHeader"]/div/a', $tag)->
item(0)->getAttribute('href');

$text = $this->dom->saveXML($xpath->query('./div/div/div[@class="FPostText"]/node()', $tag)->
item(0)->parentNode);

$author = $xpath->query('./div/div[@class="FUserInfo"]/a[@class="UserLink"]', $tag)->
item(0)->nodeValue;

$alink = $xpath->query('./div/div[@class="FUserInfo"]/a[@class="UserLink"]', $tag)->
item(0)->getAttribute('href');

$datetime = $xpath->query('./div[@class="FPostHeader"]/div/time', $tag)->
item(0)->getAttribute('datetime');

if ($author === $targetAuthor) { // LFS Forum may yield false results due to wildcard matches
$this->posts[$id]['id'] = $id;
$this->posts[$id]['datetime'] = date(DATE_RFC2822, (strtotime($datetime)));
$this->posts[$id]['author'] = $author;
$this->posts[$id]['topic'] = htmlspecialchars($topic);
$this->posts[$id]['alink'] = $alink;
$this->posts[$id]['tlink'] = $tlink;
$this->posts[$id]['plink'] = $plink;
$this->posts[$id]['text'] = preg_replace("/<([a-z][a-z0-9]*)[^>]*?(\/?)>/i",'<$1$2>',
strip_tags($text, '<div><p><a><fieldset><legend>'));
}

$ids[] = $id;
}
}

if (isset($ids) && count($ids) > 0) {
file_put_contents('./scraper.cache', "\n" . implode("\n", $ids), FILE_APPEND);
}

return $this->posts;
}

}

$scraper = new LfsForumScraper;

$posts = $scraper->scrapeAuthor('Scawen');
$posts = $scraper->scrapeAuthor('Victor');
$posts = $scraper->scrapeAuthor('Eric');

print_r($posts);

(Vic is OK wit this, I checked ...)
Last edited by felplacerad, . Reason : Feed is no longer available
nikopdr
S3 licensed
You can set the AI to use your selected skins in the options, under the misc category.

There is also an AI skin pack that was pieced together by felplacerad, which creates color setting (.col) files for the AI names and the AI's automatically select those. You can also do that yourself by assigning the AI's name into the color.

https://www.lfsforum.net/showthread.php?t=26119

I honestly wouldn't see a point in making it automatical since the skins that come with LFS are limited in quantity, and mostly because LFS's strongest points is it's online gameplay.
Last edited by nikopdr, .
Boris Lozac
S2 licensed
@ felplacerad

220, really
It doesn't work like that here, set it to 900 and the game will adjust the steering depending on the car you drive..
MadCatX
S3 licensed
Quote from Scawen :Are there any particular types of textures that are missing? I'm trying to understand why some would succeed and others would fail. Maybe a screenshot would help.

EDIT : I don't think LFS contains any relevant changes as I did not change anything to do with texture loading. From the vague information I found in Google from that error message, it seems to be a problem loading a DXT1 texture, which is pretty basic stuff for DX9. Is it easy to go back to the earlier version of Wine to see if LFS still works in that version? That would confirm that it's a new bug introduced into Wine, and I would hope the Wine developers can easily fix that.

The problem seems to be isolated to JPEG textures - as is somewhat confirmed by this "fixme" message

fixme:d3dx:D3DXCreateTextureFromFileInMemoryEx Generation of mipmaps for compressed pixel formats is not implemented yet

I guess that a newer revision of DX9 introduced a functionality that is not supported yet by WINE directly. I'm on a less than useless mobile connection at the moment so I cannot grab the latest DX9 libraries and start experimenting but if it takes as less as telling WINE to use a native d3dx9 library I don't consider it a problem.

Any chance you can reupload E15 so we can verify that a native d3dx9 library is necessary only for E17 onwards?

I attached a screenshot to show what my LFS looks like now.

EDIT: I tried to downgrade to 1.7.18 (what's reported to work by felplacerad) and it exhibits the same behavior so I suppose that WINE really is lacking some functionality used by LFS.
Last edited by MadCatX, .
LFS UK Kart Meet 2013
jasonmatthews
S3 licensed
Past LFS meetings:

1. Karting 2005: details / afterwards (thanks to Shaun)
2. Karting 2006: details / afterwards (thanks to Will / Tristan)
3. Race-sim centre 2007: details / afterwards (thanks to Bob Smith)
4. Karting 2008: details / afterwards (thanks again to Bob Smith)
5. Karting 2009: details
6. Karting 2010: details / afterwards
7. Karting 2011 - SR Forums
8. Karting 2012 - https://www.lfsforum.net/showthread.php?t=79809

I will again be doing the event this year. As it is late to post I have based this on 20 people attending.

Event Info

The venue: G-Force Karting Map & Directions My house

The karts: 200 cc karts, up to 10 on track at once

The event:
We have the whole track to ourselves the entire day, so when we have the numbers we can work out any format we like

The date:
August 9th-11th 2013
The time:
10am (11am race start) to 5pm

The cost:
£90, need full amount asap (based on 20 people) - The account to send the money to is jason@sonicrealmsracing.co.uk. PLEASE SEND AS A GIFT!

Other Event details

The track is very close to my house. For those who want to stay at mine, you are welcome. You can even pitch up tents in my garden if you want, I have plenty of space. I could probably accommodate around 20 in my house and more if you brought tents, you would just need to bring a sleeping bag. Also we have a BBQ after the karting. I have a Full size pool table, Wii, lots of PC's (with LFS of course), XBOX 360, projector and of course there will be plenty of beer and a BBQ. I would want £20 each for food and beer if you stay at mine (included in the price). For those not wanting to stay at mine, there are plenty of cheap hotels close to the karting.

Confirmed

If you would like to come, please reply to this post, then if we have spaces, I will put you down.

1. Turkey £90
2. Mark £90
3. Pete £90
4. KayJay £90
5. Andreas B £90
6. holtti.jr £90
7. Victor £90
8. Becky Rose £90
9. Macker £70 (3 man team)
10. Bob Smith £90 (3 man team)
11. _Rob_ £90
12. IsaacPrice £90
13. The Very End £90
14. boothy £70 (3 man team)
15. three_jump £90
16. brood £90
17. Robendo £90
18. der butz £90
19. Andrew Lovett £90
20. Keith £90
21. Jessie (my niece) £50 (3 man team)
22. Mp3 Astra £70 (3 man team)
23. Daniel (3 man team)

Storm_cloud
Fordman (speccing)
russellsaunders

Possibles -

simon
csf
vipex123
Tongey
ACCAkut
lukelfs
adamlfs
Gerdoner
Franky500
danthebangerboy
mackiethestaggie
Junkan
pswillies
nigelpm
failure
dollarek
count.bazley
Feuerdrache
Monty

Can't come -

cargame.nl
felplacerad
Jason Lovett
Andrew Lovett
Paul
-------------------
* Not racing
Bold are confirmed
Just thought I would post my plan for the weekend.

Friday

People will be arriving by car all day up until early evening, so friday will be about taking all the arrivals. There will be snacks and sandwiches etc for the day, then I think we normally order take out (chinese/kebabs/pizza's etc) for the evening. We should go over the team pairings also then.

Activities - Pool, Darts, Wii, LFS, cards, chess, getting to know eachother, drinking, eating etc...

Saturday

07:00-08:15 Get up, shower and get ready, coffee!! (4 bathrooms so we should be ok)
08:15-9:15 Breakfast at the local Cafe.
9:15-18:00 Karting See below

10:00 - 10:30 Arrive at site
10:30 - 11:00 Kitting out and briefing.
11.00 - 11.30 Practice (10 mins each)
11.45 - 12.45 Mini Endurance - 1 hour race (1 x 20 minute stint each)
12.45 - 13.00 Break
13.00 - 16.00 Main Endurance race - 3 hours race (2 x 30 minute stints each)
16.00 - 17.00 Individual Sprint Races (3 x 10 minute heats with a 10 minute final)
17.00 - Whenever - back to Jason's for those staying the evening.

Note : we will be using the practice session at the start to not only familiarise ourselves with the track, but also check the karts out. Each driver will get a chance to see if their kart is either faulty or slow, any problems can be rectified by pulling in to the pits and telling the marshall. They can then take the kart to the mechanic, who will fix it. We have been assured that the karts are all in good order, but you know how these things work, there's always one kart that runs like a pig!!

18:00-19:00 Showers/change clothes etc
19:00 onwards will be BBQ and PARTY!!

Sunday

I have bought plenty of cereal and orange juice so that should send you home OK

House Rules

Smoking is allowed downstairs, but no smoking upstairs at all, and also no shoes upstairs. There is a bathroom downstairs so it shouldn't be a problem.

I have 14 meg wireless unlimited internet and have taken my password off for the weekend so if anyone wants to bring laptops etc they are welcome to use my connection. I also have 20 Ethernet ports spare for those without wireless.
Last edited by jasonmatthews, .
RAUL_EL_MJOR
Demo licensed
thx to felplacerad for the skinpack
Becky Rose
S2 licensed
Quote from teppo.jr :couple of weeks ago i almost tied at karting race, i lost 0.007 sec , for second position );

Damn that's close, my closest was half a kart length after 2 hours (with me winning), but at the LFS meet in Nottingham a few years ago I beat felplacerad to pole by .01 in qualy (and promptly spun in the race) but I've never tied in LFS.

I suppose the reason LFS doesn't use thousandths is because with net play it just cannot guarantee accuracy at that level.
Holtti.Jr
S2 licensed
Hey guys!

This year, Mike (the guy who almost did not made it to his son's birth in 2010) and Andy from Sweden will come but unfortunately Felplacerad couldent make it when he was busy with other things.

The good thing is that this year I do not need to worry about birth and can consentrate on the karting and beer .

I think it will be great fun all weekend.

See you all soon. :eclipsee_:heyjoeani:ernaehrun
LFS UK Kart Meet 2012
jasonmatthews
S3 licensed
Past LFS meetings:

1. Karting 2005: details / afterwards (thanks to Shaun)
2. Karting 2006: details / afterwards (thanks to Will / Tristan)
3. Race-sim centre 2007: details / afterwards (thanks to Bob Smith)
4. Karting 2008: details / afterwards (thanks again to Bob Smith)
5. Karting 2009: details
6. Karting 2010: details / afterwards

I will again be doing the event this year. I have around 10 spaces available.

Event Info

The venue: G-Force Karting Map & Directions My house

The karts: 200 cc karts, up to 10 on track at once

The event:
We have the whole track to ourselves the entire day, so when we have the numbers we can work out any format we like

The date:
August 18th 2012
The time:
10am (11am race start) to 5pm

The cost:
Approx £60, deposit to be paid up front


Other Event details


The track is very close to my house. For those who want to stay at mine, you are welcome. You can even pitch up tents in my garden if you want, I have plenty of space. I could probably accommodate around 20 in my house and more if you brought tents, you would just need to bring a sleeping bag. Also we can have a proper party type thing after the karting. I have a Full size pool table, Wii, lots of PC's (with LFS of course), XBOX 360, projector and of course there will be plenty of beer and a BBQ. I would want £15 each for food and beer if you stay at mine (included in the price).

For those not wanting to stay at mine, there are plenty of cheap hotels close to the karting.

Please post comments and interest here

Confirmed

If you would like to come, please reply to this post, then if we have spaces, I will put you down.

1. Turkey £80
2. Mark £80
3. der butz £60
4. Mp3 Astra £60
5. Paul
6. Macker £80
7. KayJay £70
8. Pete £80
9. Jason Lovett £60
10. Andrew Lovett £60
11. three_jump
12. Storm_cloud £80
13. Becky Rose £80
14. Andreas B £80
15. holtti.jr £80
16. brood £60
17. Bob Smith
18. ACCAkut £60
19. lukelfs £80
20. adamlfs £80
21.The Very End £80
22. Keith £80
23. cargame.nl
24. Tongey £10

--------------------
Gerdoner
Franky500
Victor
Mp3 Astra
danthebangerboy
mackiethestaggie
Daniel (my son)
Junkan
pswillies
nigelpm
felplacerad
failure
---
Can't make it -
dollarek
count.bazley
Feuerdrache
Monty
-------------------
* Not racing
Bold are confirmed
Just thought I would post my plan for the weekend.

Friday


People will be arriving by car all day up until early evening.

So friday will be about taking all the arrivals. There will be snacks and sandwiches etc for the day, then I think we should order take out (chinese/kebabs/pizza's etc) for the evening. We should go over the team pairings also then.

Activities - Pool, Darts, Wii, LFS, cards, chess, getting to know eachother, drinking, eating etc...

Saturday

07:00-08:15 Get up, shower and get ready, coffee!! (4 bathrooms so we should be ok)
08:15-9:15 Breakfast at the local Cafe.
9:15-18:00 Karting See below

10:00 - 10:30 Arrive at site
10:30 - 11:00 Kitting out and briefing.
11.00 - 11.30 Practice (10 mins each)
11.45 - 12.45 Mini Endurance - 1 hour race (1 x 20 minute stint each)
12.45 - 13.00 Break
13.00 - 16.00 Main Endurance race - 3 hours race (2 x 30 minute stints each)
16.00 - 17.00 Individual Sprint Races (3 x 10 minute heats with a 10 minute final)
17.00 - Whenever - back to Jason's for those staying the evening.

Note : we will be using the practice session at the start to not only familiarise ourselves with the track, but also check the karts out. Each driver will get a chance to see if their kart is either faulty or slow, any problems can be rectified by pulling in to the pits and telling the marshall. They can then take the kart to the mechanic, who will fix it. We have been assured that the karts are all in good order, but you know how these things work, there's always one kart that runs like a pig!!

18:00-19:00 Showers/change clothes etc
19:00 onwards will be BBQ and PARTY!!
[B][U]
[B][U]
Sunday[/U][/B]

I have bought plenty of cereal and orange juice so that should send you home OK

[B][U]House Rules[/U][/B]

Smoking is allowed downstairs, but no smoking upstairs at all, and also no shoes upstairs. There is a bathroom downstairs so it shouldn't be a problem.

I have 14 meg wireless unlimited internet and have taken my password off for the weekend so if anyone wants to bring laptops etc they are welcome to use my connection. I also have 20 Ethernet ports spare for those without wireless.
Last edited by jasonmatthews, .
jasonmatthews
S3 licensed
Karting Results:

1 hour race
Team 3 The Very End becky rose danthebangerboy derbutz - 113 laps
Team 9 breadc Tongey [SR] Paul Daniel Matthews - 111 laps
Team 8 johnhilton cargame.nl mackash Andrew Lovett - 111 laps
Team 10 boothy 1993weeman jasonl220 Rudolfa - 110 laps
Team 2 ferret KayJay jasonmatthews - 110 laps
Team 7 Nicka pswillies nigelpm dollarek - 110 laps
Team 1 Holtti.Jr Andreas B felplacerad - 109 laps
Team 4 peterules [SR] Keith Stormcloud - 108 laps
Team 6 franky500 bobsmith arox123 brood - 108 laps
Team 5 adamlfs Mackie The Staggie mp3astra count.bazley - 104 laps

3 hour race
Team 2 ferret KayJay jasonmatthews - 337 laps
Team 4 peterules [SR] Keith Stormcloud - 333 laps
Team 10 boothy 1993weeman jasonl220 Rudolfa - 332 laps
Team 8 johnhilton cargame.nl mackash Andrew Lovett - 327 laps
Team 1 Holtti.Jr Andreas B felplacerad - 324 laps
Team 6 franky500 bobsmith arox123 brood - 324 laps
Team 3 The Very End becky rose danthebangerboy derbutz - 323 laps
Team 5 adamlfs Mackie The Staggie mp3astra count.bazley - 322 laps
Team 7 Nicka pswillies nigelpm dollarek - 319 laps
Team 9 breadc Tongey [SR] Paul Daniel Matthews - 313 laps
Last edited by jasonmatthews, .
jasonmatthews
S3 licensed
Time to talk about teams

I have tried to arrange the teams into the groups that I assume want to be together.

Please tell me who you would rather race with, this is just my quick thoughts -

1.
Holtti.Jr
Andreas B
felplacerad


2.
Mark
KayJay
Turkey

3.
theveryend
becky rose
danthebangerboy
derbutz

4.
Pete
Keith
Dave


5.
adamlfs
Mackie The Staggie
mp3astra
count.bazley


6.
Nicka
pswillies
nigelpm
dollarek


7.
franky500
bobsmith
arox123
brood


8.

johnhilton
cargame.nl
mackash
andrew lovett


9.
breadc
Tongey
Paul
Daniel


10.
boothy
1993weeman
jasonl220
Rudolf
Last edited by jasonmatthews, .
jasonmatthews
S3 licensed
Ok we are 3 people down atm. I would like to offer the people who have paid £55 the chance to team up in teams of 3 instead of 4. This will mean you will get more track time each, which you have already paid for. I think this is the only way we can do this fairly, is everyone OK with that?

Obviously, the teams of 3 will have to pit the same amount of times as everyone else to make it fair. If anyone in this list would rather go in a team of 4 then let me know. We can sort this out tomorrow night for the details, but I thought it best to let you all know my plans.


*30. Holtti.Jr £55
*17. Andreas B £55
*19. felplacerad £55


*27. The Very End £55
*12. brood £55
*31. Becky Rose £55
*37. storm_cloud £55

*39. arox123 £53.66
Last edited by jasonmatthews, .
Becky Rose
S2 licensed
I believe that is their intention but it might be wise to get Felplacerad to confirm that, as otherwise I'll have 5 people in the car and that's the legal limit - and whilst I've broken lots of laws in the past, I am not too keen on breaking UK traffic laws because they actually police those.
Andreas B
S3 licensed
you can add Stanstead as point and add text:

felplacerad, Andreas B and Mike are landing 11:35 @ friday 23th
needs ride...




edit: It's called Stansted lol
edit 2: ok...Sweden doesn't have community edits ^^ - I'll try to login with my UK proxy :P
edit 3: puh...i could get the map up, but when trying to login google flipped out...prolly due to all of a sudden my pc with cookies and cache was in UK...tried clear those but still didn't work...
final edit: SOLVED!!!!!!!!!!!!!!!!!!!!
Last edited by Andreas B, . Reason : misspelled
Andreas B
S3 licensed
I must have sucked up good to my ex-wife - no problem for her taking the kids the weekend this epic event takes place

Will check possiblilties to take my car from Gothenburg to Immingham(by ferry. Tor Line is a big customer to me), in that case i'll bring felplacerad with me, and for turbofreak - if u can take urself to Gothenburg in good time u might fit too

Would like to stay at Jason's place, pm me details for payment and i'll pay in full tomorrow.
LFS UK Kart Meet 2010 - signups and info
jasonmatthews
S3 licensed
Past LFS meetings:

1. Karting 2005: details / afterwards (thanks to Shaun)
2. Karting 2006: details / afterwards (thanks to Will / Tristan)
3. Race-sim centre 2007: details / afterwards (thanks to Bob Smith)
4. Karting 2008: details / afterwards (thanks again to Bob Smith)
5. Karting 2009 : details

After the success of last year, we will organise the next event in Wales at the same track. Again everyone is welcome to stay at mine.

Pictures and Video's from last years event
Passo's Video Of Event on youtube

Event Info

The venue: G-Force Karting G-Force Facebook Map & Directions My house
Peoples routes for lifts

The karts: 200 cc karts, up to 10 on track at once - they have just bought new karts for 2010.

The event:
We have the whole track to ourselves the entire day, so when we have the numbers we can work out any format we like

The date:
24th July

The time:
10am (11am race start) to 5pm

The cost:
£45, deposit to be paid up front


Other Event details


The track is very close to my house. For those who want to stay at mine, you are welcome. You can even pitch up tents in my garden if you want, I have plenty of space. I could probably accommodate around 20 in my house and more if you brought tents, you would just need to bring a sleeping bag. Also we can have a proper party type thing after the karting. I have a Full size pool table, Wii, lots of PC's (with LFS of course), projector and of course there will be plenty of beer and a BBQ.

For those not wanting to stay at mine, there are plenty of cheap hotels close to the karting.

Just thought I would post my plan for the weekend.

Friday

So friday will be about taking all the arrivals. There will be snacks and sandwiches etc for the day, then I think we should order take out (chinese/kebabs/pizza's etc) for the evening. We should go over the team pairings also then.

Activities - Pool, Darts, Wii, LFS, cards, chess, getting to know eachother, drinking, eating etc...

11pm to 1am sleep (we need to be up early!)

Saturday

07:00-08:15 Get up, shower and get ready, coffee!! (4 bathrooms so we should be ok)
08:15-9:15 Breakfast at the local Cafe.
9:15-18:00 Karting See below

10:00 - 11:30 Arrive at site, Kitting out and briefing & practice.
11.30 - 13.00 Mini Endurance - 1 hour 30 race
13.00 - 14.00 Break
14.00 - 17.00 Main Endurance race - 3 hours race (2 x stints each)
17.00 - Whenever - back to Jason's for those staying the evening.
18:00-19:00 Showers/change clothes etc
19:00 onwards will be BBQ, drinking IGTC and PARTY!!

Sunday


I have bought plenty of cereal and orange juice so that should send you home OK

House Rules

Smoking is allowed downstairs, but no smoking upstairs at all, and also no shoes upstairs. There are 4 bathrooms so there np there.
I have 6.5 mbs wireless internet and have taken my password off for the weekend and a HUGE (300 GB) limit so if anyone wants to bring laptops etc they are welcome to use my connection. I also have 4 ethernet ports spare for those without wireless.

Please post comments and interest here

Attendees * deposit paid fully paid

*1. jasonmatthews £45
*2. ferret £45
*3. 1993weeman £45
*4. Mackie The Staggie £45
*5. pswillies £45
*6. adamlfs £45
*7. breadc £45
8.
*9. Mp3 Astra £45
*10. nigelpm £45
*11. count.bazley £45
*12. brood £55
*13. danthebangerboy £45
*14. Bob Smith £45
*15. dollarek £45
*16. KayJay £45
*17. Andreas B £55
*18. der butz £45
*19. felplacerad £55
*20. cargame.nl £45
*21. paul £45
*22. peterules £45
*23. John Hilton £45
*24. Daniel£10
*25. keith £45
*26. Nick A £45
*27. The Very End £55
*28. jasonl220 £45
*29. andrew lovett £45
*30. Holtti.Jr £55
*31. Becky Rose £55
*32. mackash £15
*33. franky500 £45
*34. boothy £45
*35. tongey £45
36.
*37. storm_cloud £55
*38. rudolfa £40
*39. arox123 £53.66
40.

Spectating/staying over

snewham

Live Stream (Might not always be online, or of any interest what so ever! )
http://fel.liveforspeed.se/live/
Last edited by jasonmatthews, .
R.Kolz
S3 licensed


FLP/r FEL (felplacerad) will provide us a livestream:

http://tv.liveforspeed.se/
RouteKaster
S2 licensed
Perfect felplacerad.

Small and easy way to solve my problem.

Well.....now i think i have all set as i like.

Thank you all guys.

Cheers.
FGED GREDG RDFGDR GSFDG