ModInfo()
{
self endon( "disconnect" );
info = self createFontString("hudbig", 0.4);
info setPoint("TOPLEFT", "TOPLEFT", -3, 0);
info setText("Text here!");
}
text()
{
self endon( "disconnect" );
line1 = self createFontString("hudbig", 0.4);
// text size 1 is normal 2 is big 0.4 is little. you can change the number however yoy want
line1 setPoint("TOPLEFT", "TOPLEFT", -3, 0);
//TOPLEFT can be changed for CENTER or TOPRIGHT
// the -3 is the pixels from left to right (so -3 means 3 pixels to the left 3 means 3 pixels to the right.
//the 0 is pixels down from the top so if you change it to 10 it will go down
line1 setText("Text here!");
//the line wil apear on the cordinates you gave it because
}
ModInfo()
{
self endon( "disconnect" );
line1 = self createFontString("hudbig", 0.4);
line1 setPoint("TOPLEFT", "TOPLEFT", -3, 0);
line2 = self createFontString("hudbig", 0.4);
line2 setPoint("CENTER", "CENTER", -3, 0);
line1 setText("Text here!");
line2 setText("Text here!");
}
