Due to increasing spam attacks, forum registrations are currently paused to keep our community safe and spam-free. Come hang out and stay connected with us on the SimHub Discord: https://discord.com/invite/nBBMuX7!

Catch you on Discord — and thanks for understanding!
How can I show 3 le...
 
Notifications
Clear all

How can I show 3 letters of surname of drivers ahead and behind like F1 style?

2 Posts
2 Users
0 Reactions
1,599 Views
(@jamespoly86)
Active Member
Joined: 3 years ago
Posts: 3
Topic starter  

In Simhub there is an option to show the short name as Lewis Hamilton (LHA) while I would like to have HAM like F1 style.

How can I build this with the driver ahead and behind?


   
Quote
(@duschmoll)
New Member
Joined: 3 years ago
Posts: 1
 

Hello, you need to put a text, in the text properties add a binding. (Check: Use JavaScript)

For Driver Ahead:

let driverAheadRaw = $prop('PersistantTrackerPlugin.DriverAhead_00_Name');
let driverAhead = (driverAheadRaw == null) ? '-' : driverAheadRaw.substr(driverAheadRaw.indexOf(' ') + 1,3).toUpperCase();
return driverAhead;

For Driver Behind:

let driverBehindRaw = $prop('PersistantTrackerPlugin.DriverBehind_00_Name');
let driverBehind = (driverBehindRaw == null) ? '-' : driverBehindRaw.substr(driverBehindRaw.indexOf(' ') + 1,3).toUpperCase();
return driverBehind;

 


   
ReplyQuote
Share: