• Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • 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.

Sphere Help

jaz_jaz

The Elite Trainer
  • 97
    Posts
    20
    Years
    Sphere help

    On sphere how do u make it so that you can't walk over certain tiles.
    Thanks
     
    I have just started and some bits are hard, but u will learn all the hard bits.
     
    You have to make some obstructions on the tiles.
     
    Right click on the tile in tile set pallet and then click set obstruction.
    And no way is sphere easier than rpg maker.
    ive acctually just started and its pretty easy
    Just wait untill you get to the scripting you wont say its easy unless you have previous programming language experiance but im guessing you dont since you say you dont know javascript.
    But if want help I will try and help but I wont flat out do stuff for you it defeats the whole purpose of learning to script because figuring out stuff is what will make you better.
     
    Thanks for that, and i think that sphere is way more difficult than rpg maker but sphere as a game maker is much better.
     
    Hi everybody, soz for this but i need a bit more help, can you make sphere games playable online?, if so how can i do this. This would be extremely helpfull as instead of showing people screenshots of my game, they can play small parts of it, which i would update weekly.
     
    you cant make an online game.
     
    You can make online games with Sphere. I haven't made one yet, though.
     
    Ok thanks for the help, for now i will not make it an online game, but when i'm better at sphere i will try to make an online game.
    Yet again i need more help, how can i make my person teleport between maps (i know this is very simple) for example from map1.rmp to map2.rmp
     
    Last edited:
    function Warp(x, y, layer, map) {

    var person = "hero"
    if (map) ChangeMap(map);

    if (layer >= 0) SetPersonLayer(person, layer);
    SetPersonX(person, x);
    SetPersonY(person, y);




    }


    function FancyWarp(x, y, layer, map) {

    FadeOut(1000);
    // 1000 milliseconds = 1 second.
    Warp(x, y, layer, map);
    UpdateMapEngine();
    RenderMap();

    FadeIn(1000);


    }
     
    lol maybe you should learn some stuff from tutorial and stuff then try it all, youll find it easier with a background
     
    I have read through tutorials, i can make a lot of basic stuff like menus, but i just can't get my guy to teleport.
     
    Back
    Top