- 23
- Posts
- 20
- Years
- Seen Nov 11, 2005
Some of my charsets are turning black in the game.... It is limiting the number of charsets I use :( Im using 2003!!
how do you put the charater in a starting place?(like in R/s/e its the truck) thanks in advance..oh ya its for RM2K3^^
here ya go:sphereslayer said:Hey I was just wondering if anyone knows howto change the text colour in sphere ? The text box im using has a white background so the text doesnt show up because obviously its white. Any help would b appreciated :)
var Black = CreateColor(0, 0, 0, 255);
var White = CreateColor(255, 255, 255, 255);
var Red = CreateColor(255, 0, 0, 255);
var Green = CreateColor(0, 255, 0, 255);
var Blue = CreateColor(0, 0, 255, 255);
var Cyan = CreateColor(0, 255, 255, 255);
var Magenta = CreateColor(255, 0, 255, 255);
var Yellow = CreateColor(255, 255, 0, 255);
I mean past level 50? My pokemon game will have pokemon go up to lv.137 or sometingDaegon_Kimeron said:There's a change character level command.
function Text_Box
{
win_main.drawWindow(16, 175,GetScreenWidth()-32,GetScreenHeight()-192);
fnt_main.drawTextBox(20, 186,GetScreenWidth()-34,GetScreenHeight()-202, 0,txt);
FlipScreen();
RenderMap();
while (GetKey() != KEY_ENTER);
}