Hey guys, i was just wondering if anyone knows of font in gta iv that looks like a 7 segment display font?
For example SET_TEXT_FONT(1) // TEXTFONT_LED - Skorpro
I tried to make a mod So i could possibly scroll through the different types of fonts and find the one i wanted.
Code:
#include <natives.h>
#include <common.h>
#include <consts.h>
#include <types.h>
#include <strings.h>
void text(void)
{
int i = 0;
SET_TEXT_FONT(i); // TEXTFONT
SET_TEXT_BACKGROUND(0);
SET_TEXT_SCALE(0.88, 1.08);
SET_TEXT_COLOUR(255, 0, 0, 255);
SET_TEXT_EDGE(1, 0, 0, 0, 0);
SET_TEXT_RIGHT_JUSTIFY(0);
SET_TEXT_DROPSHADOW(0, 255, 255, 255, 255);
if(IS_BUTTON_PRESSED(0, 0xE)) //Square
{
i = i + 1;
DISPLAY_TEXT_WITH_LITERAL_STRING(0.36,0.865, "STRING", "test");
}
}
void main(void){
THIS_SCRIPT_IS_SAFE_FOR_NETWORK_GAME();
while(true)
{
text();
WAIT(0);
}
}
Tried many different ways...
failed lol
Any Help is appreciated.