• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

General Game Dev Help and Requests

Status
Not open for further replies.
23
Posts
19
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!!
     

    Peekimon

    Me = cat-aholic, Meowr
    1,671
    Posts
    19
    Years
  • 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^^

    First of all, make a map where you want the char to start in.
    Right Click >> Set Starting Point.
     
    38
    Posts
    18
    Years
    • Age 34
    • Seen Feb 11, 2011
    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 :)
     

    Blizzy

    me = Scripter.new("Noob")
    492
    Posts
    19
    Years
  • 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 :)
    here ya go:
    Code:
    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'm not sure if this is what you want
     
    38
    Posts
    18
    Years
    • Age 34
    • Seen Feb 11, 2011
    Thanks for the quick reply virtual. But I'm new to sphere and im not to sure on howto use that code. The code im usin for my text box in the game is from wild tigers tutorial.

    Code:
    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);
    }

    This gives me the pokemon type text box down the bottem of my screen but with the white text on top of it, it can't b seen.

    heres a pic of what im getting at the moment, if u look reali hard u can c a sort of grey blur wher the text is inside of the text box.
     
    38
    Posts
    18
    Years
    • Age 34
    • Seen Feb 11, 2011
    Dont worry ive got it figured the peepz ova on #sphere on irc helped me out

    **EDIT**

    Does anyone have any pokemon trainer spritesets for sphere ?
    e.g. the hero boy and girl and also all the random npc's ?
     
    Last edited:

    blueguy

    No capitalization required. ;D
    738
    Posts
    19
    Years
    • Age 33
    • Seen Aug 20, 2013
    Here is what I would like to do. I would like to begin to form my battle system, so that it matches that of the GBA, however I'm confused about how to do this, and so - I ask, would someone help me begin to create my own Battle System?
     

    blueguy

    No capitalization required. ;D
    738
    Posts
    19
    Years
    • Age 33
    • Seen Aug 20, 2013
    Me? I'm using RM2K3. Hmm... my message is apparently too short.
     
    Status
    Not open for further replies.
    Back
    Top