Is there a way to remove player-name from the inventory screen?

add this to the bottom of your mpmission init.sqf:

Code:
[] spawn {
    while {true} do {
    waitUntil{!isNull finddisplay 106};
    ctrlSetText [101, "hi hi"];
    waitUntil{isNull finddisplay 106};
    };
};
 
Back
Top