Jump to content

vamcj

Members+
  • Posts

    288
  • Joined

  • Last visited

Everything posted by vamcj

  1. Guys, the "match day header panel" file edits exactly which screen?
  2. Guys, good night! I feel that both the tactic button and the club button in the sidebar (which are 2 screens that I have already edited) take a few seconds longer to load the screen when clicking on them. The other buttons, which are from screens that have not been edited so far, are very instantaneous. Is there a way to minimize this delay? Something else please! Is there a way to get rid of the horizontal separators in the sidebar?
  3. Guys, does anyone know how I can show the club's confederation logo? Here is the code for the team logo: <widget class="picture" id="lgtF" scale_picture="true" keep_aspect_ratio="true" image_alignment="bottom"> <layout class="stick_to_sides_attachment" alignment="bottom" inset="40"/> <layout class="stick_to_sides_attachment" alignment="all" inset="0"/> <attachment class="test_setting_attachment" get_setting="show_badges" default_value="true" set_property="hidn"> <boolean id="value" value="false"/> </attachment> <!-- tells the picture to listen to the 'main picture' global property being set, and set its own file property from it --> <record id="object_property"> <integer id="get_property" value="mnpc" /> <integer id="set_property" value="file" /> </record> </widget>
  4. I'm sorry man, but I didn't understand your question!
  5. I almost got it! However, now the mask has leaked into the other images! <container> <layout class="stick_to_sides_attachment" alignment="all" inset="-50" apply_to_children="true"/> <widget class="stadium_picture" id="STAp" image_alignment="centre_x,centre_y" scale_picture="true" keep_aspect_ratio="true" transparency="0.8"> <record id="object_property" get_property="objt" set_property="objt"/> <record id="default_properties" image_alignment="centre" scale_picture="true" keep_aspect_ratio="true"/> <widget class="picture" file="pictures/stadiums/stadium_bg" /> <widget class="picture" id="STPC"/> </widget> <widget class="picture" id="bkgd" file="pictures/stadiums/none_base" hidden="false" red_replacement="primary"/> </container> It worked! I finally did it!
  6. Guys, I need some help, please! I'm trying to put a "mask" that goes over the stands for teams that don't have an image of the stadium. I want this "mask" to be in the club's primary color. However, if I leave the code like this: <container> <layout class="stick_to_sides_attachment" alignment="all" inset="-50" apply_to_children="true"/> <widget class="stadium_picture" id="STAp" image_alignment="centre_x,centre_y" scale_picture="true" keep_aspect_ratio="true" transparency="0.8"> <record id="object_property" get_property="objt" set_property="objt"/> <record id="default_properties" image_alignment="centre" scale_picture="true" keep_aspect_ratio="true"/> <widget class="picture" file="pictures/stadiums/stadium_bg" /> <widget class="picture" id="bkgd" file="pictures/stadiums/none_base" hidden="false" red_replacement="primary" /> <widget class="picture" id="STPC"/> </widget> </container> The mask is not applied according to the club's primary color. <container> <layout class="stick_to_sides_attachment" alignment="all" inset="-50" apply_to_children="true"/> <widget class="stadium_picture" id="STAp" image_alignment="centre_x,centre_y" scale_picture="true" keep_aspect_ratio="true" transparency="0.8"> <record id="object_property" get_property="objt" set_property="objt"/> </widget> <record id="default_properties" image_alignment="centre" scale_picture="true" keep_aspect_ratio="true"/> <widget class="picture" file="pictures/stadiums/stadium_bg" /> <widget class="picture" id="bkgd" file="pictures/stadiums/none_base" hidden="false" red_replacement="primary"/> <widget class="picture" id="STPC"/> </container> The mask is applied with the club's primary color, but all clubs are left with the default "without stadium image" (even those that have the image in the pictures folder). Where is the error? Where am I going wrong?
  7. Okay, I already apologized. In fact, in programming logic, anything is possible! We just don't know this answer. But, it's ok, I gave up on her after that. ============================================== Please, what are the files to edit both the game scoreboard and this screen below?
  8. I'm sorry, the intention was never to disrupt! Just bring solutions and healthy discussions to the forum. I will withdraw the question. Life goes on! Thanks
  9. I was here thinking about some solution for the code that makes the icons appear: yellow card, substitutions and serious query in the same position. How to separate them? What if we used the hidden="true" or hidden="false" function for the icons in question and repeating the code 3x? for example: in code 1 yellow card icon hidden="false" replacement icon hidden="true" and serious injury icon hidden="true" code 2 yellow card icon hidden="true" replacement icon hidden="false" and serious injury icon hidden="true" code 3 yellow card icon hidden="true" replacement icon hidden="true" and serious injury icon hidden="false" and each code with a different position. all this by modifying the following code: <container> <layout class="stick_to_sides_attachment" alignment="top" inset="-7" apply_to_children="true"/> <layout class="stick_to_sides_attachment" alignment="right" inset="0" apply_to_children="true"/> <layout class="stick_to_sides_attachment" alignment="vertical" inset="0" /> <widget class="client_object_property_panel" property="PinD" id="PinD" height="22" width="22"> <record id="widget_properties"> <flags id="label_disabled" value="true" /> </record> </widget> </container> Could anyone help me think about how to write this code?
  10. Dude, I tried to use your code, but I can't position the assist icon next to my goal icon. I did everything, without positive results. Can you give me some light? See my goal icon code: <!--GOAL ICON--> <container> <layout class="stick_to_sides_attachment" alignment="top" inset="40" apply_to_children="true"/> <layout class="stick_to_sides_attachment" alignment="right" inset="0" apply_to_children="true"/> <layout class="stick_to_sides_attachment" alignment="vertical" inset="0" /> <widget class="client_object_property_panel" property="MPgl" id="MPgl" height="16" width="16"> <record id="widget_properties"> <flags id="scale_picture" value="false" /> <flags id="image_alignment" value="top" /> <flags id="auto_size" value="horizontal"/> <boolean id="label_disabled" value="true"/> </record> </widget> </container> I would like to place the assist icon to the left of the goal icon.
  11. Good night my friend! It's simple, just delete it from the code: 'translation_id="xxxx" ========================================================================= Guys, which file can I access and edit this?
  12. One more question my friends, please. Where should I change to reduce this space between the left panel and the pitch?
  13. I'm almost there. Now I just need to center this icon (i). <widget class="person_button" id="Pnms" alignment="centre,can_scale" icon_alignment="centre" format="" enforce_style="true" wants_mouse_events="true" secondary_icon_colour="white" navigation_focus_target="false" width="14"> <record id="object_property" get_property="Pnms"/> <layout class="stick_to_sides_attachment" alignment="bottom" inset="3" /> </widget> I achieved! Thanks for your help. Thank you very much!
  14. That's almost it my friend. but, I just want the icon (i), without the player's name next to the icon. That's almost it my friend. but, I just want the icon (i), without the player's name next to the icon. Is there a way to use the hidden function in name only?
  15. Please, I'm trying to make the one (i) appear with the player information popup. But, it only has this hyphen and does not open the popup. See my code. Where am I going wrong? <widget class="person_button" id="pbtn" alignment="centre,can_scale" icon_alignment="centre" enforce_style="true" secondary_icon_colour="white" navigation_focus_target="false" width="14"> <layout class="stick_to_sides_attachment" alignment="bottom" inset="3" /> </widget>
  16. Oh Man! You are a genius! Thank you very much! If you find out more about the other icons, please let me know. If I find out, I'll let you know here.
  17. Amazing help my friend! Thanks! I really wanted to separate the yellow card icons from the subs. What is this icon in the MUNIAIN player?
  18. Yes, really, I understand that! property="PinD" id="PinD" refers to the replacement and yellow card icons. But is there any way to separate them? And also include the assist icon? property="MPgl" id="MPgl" refers to the goal icon. And I believe that "MPas" would be for assist icon (but, it is not present in the file code). I couldn't include it. and <widget class="picture" file="icons/16px/slightly injured" height="16" width="16" id="inji" scale_picture="true"/> refers to the injury icon. I haven't been able to test yet whether it's the same for serious injuries as well. And another one that I wasn't able to test is the red card.
  19. Guys, one more help, please. How do I edit the icons (yellow card, red card, substitutions, injuries, goals, assists) in the players bar? I found it in the "match players bar widget" file, but there I can only edit the position of some of these icons (goal, substitution and injury).
  20. Thanks I did it, thanks to your help! However, the decrease button icon (which is in the color I want) returns to white when clicking the button. Do you know how to fix it?
  21. https://i.imgur.com/eiombap.png I say change these buttons. I didn't find how to do it in the file you told me.
  22. Please, which panel can I change the control buttons in the top right corner of the game screen? Oh, I was already forgetting... Where do I change the font size of the match comments?
  23. No, in this file you mentioned I edit all the details of this screen, but that's not where I replace the background.
  24. Please, I need some help. How do I replace the background image on this screen? It would be in the "client object browser" file, correct? If yes, what code should be entered?
×
×
  • Create New...