Jump to content

14eFlorian

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About 14eFlorian

  • Rank
    Rookie
  1. 14eFlorian

    Players list in a RscListbox

    Thanks for your answer, it works perfectly. And for the IDC, it was a bad copy paste (I have 2 dialog) 😀
  2. Hi, I want to display the list of player name in my rsclistbox and when I click on a player, I’m teleported to him. This is my RscListbox (who is in my dialog named menu_teleport) : // List class listbox : RscListbox { idc = 11500; x = 0.314375 * safezoneW + safezoneX; y = 0.291 * safezoneH + safezoneY; w = 0.180469 * safezoneW; h = 0.396 * safezoneH; }; This is my playerteleport.sqf : createDialog "menu_teleport"; { lbAdd [1500, name _x]; lbSetData [1500, _forEachIndex, _x]; } forEach allPlayers; I have a error : Error Type Objet, String waited I have done several tests with other functions but no player name is displayed (I made tests with unit names too and I have the same error). I understand that the variable is not good but how can I return a player name in string ? I found several posts that had the same error but the given solutions don't work for me. Do you have any idea?
  3. I’m retexturing vehicles from the FFAA MOD but I have a problem with two vehicles. For the first vehicle, the texture applies when I spawn the vehicle in the editor but when I move away, it is replaced by the basic texture of the vehicle (about 10 meters). This only happens to one vehicle, all other vehicles keep my texture For the second vehicle, the opposite happens. The vehicle appears with the basic texture but when I move away, my texture appears. Does anyone have any idea how to solve this problem? Is the problem Arma 3 or the FFAA mod?
×