to be able to use another Cursor. do i need a addon?
i was looking a bit at: http://community.bistudio.com/wiki/PROPER:Mod#PROPER_UI and i see a cursor color changer addon..
now i have upbo the file. and looked at the files. ther was one file i found intresting,,
core.hpp
<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
class CfgInGameUI
{
class Cursor
{
leaderColor[] = {1.000000,1.000000,0.000000,1.000000}; //{0,0.6,0,0.65};
selectColor[] = {1.000000,1.000000,0.000000,1.000000}; //{0,0.6,0,0.65};
activeWidth = 0.223500; //0.1875;
activeHeight = 0.300000; //0.25;
activeMinimum = 0.120000; //0.07;
activeMaximum = 0.160000; //0.12;
};
};
[/QUOTE]
if i change that file to.
<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
class CfgInGameUI
{
class Cursor
{
class Arrow
{
texture = "myCursor.paa";
width = 32;
height = 32;
hotspotX = 0.1875;
hotspotY = 0.03125;
};
};
};
[/QUOTE]
will this work?
HOME 
Reply With Quote