About VSOUSA14
.png.a9bb8eb85ca4db48f077a97754e41e20.png)
- Birthday 06/14/2000
Profile Information
-
Gender
Male
-
Preferred Trucks
Volvo
-
American Garage Location
California: Los Angeles
-
EU Garage Location
Germany: Kiel
-
Known languages
Portuguese English Spanish Italian
TruckersMP Information
-
Virtual Trucking Company
[PÉ NA ESTRADA] PÉ NA ESTRADA
CTO
Recent Profile Visitors
2,220 profile views
VSOUSA14's Achievements
-
There will always have toxic and trollers in this game, but in my opinion, I think this rule reduced the number of accidents. I played this game when there was no speed limit and everywhere you went, you saw an accident and now this happens less due to the fact that they drive slow
-
"American Truck Simulator and Euro Truck Simulator 2 are simulators and not racing games." From what is written in the article that JamesS014 quoted, truckersMP is aimed at people who want to have a realistic experience of the game. Hence the creation of simulation servers, for this type of people, and the creation of Arcade servers, for those who don't like the realism of the game.
-
You can drive over 110km on arcade servers, that's why truckersMP have simulation and arcade servers
-
For me, In general, Road to the Black Sea map; Italy and scandinavia have the most beautiful landscapes
-
If i am playing alone, i listen to TruckersFM, otherwise i use discord bots to play songs
-
Lemon Juicee started following VSOUSA14
-
VSOUSA14 changed their profile photo
-
Chaton7000 started following VSOUSA14
-
StraightEdgeSocieth started following VSOUSA14
-
Hello @kadaffy1 To create a VTC you don't need a website, you just need to go to : https://truckersmp.com/vtc and create your VTC there. If you having trouble creating one, take a look here: https://truckersmp.com/knowledge-base/article/327 Thanks SOUSA
-
Forum Banner Grey Band Either top or bottom
VSOUSA14 replied to Candimane's question in Solved Topics
I uploaded your photo to my profile and worked fine for me, try to use this one: if this above doesn't work, try this one: Quick tip: when making those cover photos, try to make it bigger like 1920x1080 for example, this way you will never get trouble with your cover photo. Quick tip 2: when uploading images, make sure it's a JPEG, because they lighter than PNG'S, the only thing is that JPEG don't support transparent background P.s if you want you can remove the white part, but make sure to save as JPEG Hope this helped SOUSA -
Forum Banner Grey Band Either top or bottom
VSOUSA14 replied to Candimane's question in Solved Topics
Hello there @Candimane In the top right corner of your cover photo, press in the "Cover Photo" button and then click where it says "Reposition Photo" and see if that works and then tell your feedback here P.s: I also see the grey bar, if the suggestion i gave above dosen't work, try to make a bigger image and that will solve Thanks SOUSA -
Rio Tinto
-
@Titanic4 hmm... I gotcha Edit: Thanks for your advice btw, i was having trouble with my steering wheel.
-
Lol, why players hate that? just bacause when raining the physics changes and you need to drive slowly? At least they could add synchronization of road events xd
-
Thanks for the updates. "Synchronization of gates between players" Next update: Synchronization of weather between players
-
I can't click anywhere at the login screen
VSOUSA14 replied to DeskPilot's question in Solved Topics
Hello @DeskPilot See if this topic helps you: Summary of the above topic: The issue you're having is most likely being caused by DirectX 11. You can try to launch the game via OpenGL: Steps: > Launch the game in single-player via OpenGL - https://i.gyazo.com/0ec83a25da6e8275233272dd36a7432b.png > Load your profile fully, create a save and then exit the game. > Launch TruckersMP. If those steps don't work, try and see if there is anything else that may help you in the original post Thanks. SOUSA -
Hello. I never used python, but you can try to create getters and then use an array where you get the getters and the response from server, and then make a loop to print all the servers: Something like this (This code below is in C#) <!--CLASS THAT HANDLES THE HTTP REQUEST--> public void UpdateServerInfo() { svCon = "http://" + ipSRV + "/players.json"; WebRequest request = WebRequest.Create(svCon); request.Credentials = CredentialCache.DefaultCredentials; ipServ = isExist(svCon); if (ipServ) { WebResponse response = request.GetResponse(); status = ((HttpWebResponse)response).StatusDescription; Console.WriteLine(status); using (Stream dataStream = response.GetResponseStream()) { StreamReader reader = new StreamReader(dataStream); responseFromServer = reader.ReadToEnd(); Console.WriteLine(responseFromServer); } response.Close(); label2.Text = "Online"; listBox1.Visible = true; panel3.BackColor = Color.LawnGreen; <!-- SEE BELOW THIS --> Player[] item = JsonConvert.DeserializeObject<Player[]>(responseFromServer); var countPlayers = item.Count(); label1.Text = countPlayers.ToString() + " Online Players"; listBox1.Items.Clear(); foreach (Player name in item) listBox1.Items.Add(" "+name.name); listBox1.Items.Add(""); <!-- SEE ABOVE THIS --> } else { label2.Text = "Offline"; panel3.BackColor = Color.Red; label1.Text = "Visit our discord our teamspeak for more information"; button2.Visible = false; listBox1.Visible = false; panel4.Visible = false; label4.Visible = false; } } <!--//GETTER--> public class Player { public string endpoint { get; set; } public int id { get; set; } public string[] identifiers { get; set; } public string name { get; set; } public int ping { get; set; } } In this C# programm, i am printing out each player into a listBox. In your Discord bot you can make something similar.