• 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.

Sphere Help

jaz_jaz

The Elite Trainer
97
Posts
19
Years
  • Sphere help

    On sphere how do u make it so that you can't walk over certain tiles.
    Thanks
     

    fudge01

    Uzumaki Naruto!
    916
    Posts
    20
    Years
    • Age 33
    • Seen Aug 28, 2006
    i just wanna know is sphere easy to use??

    edit: should this go in rm2k?
     

    jaz_jaz

    The Elite Trainer
    97
    Posts
    19
    Years
  • I have just started and some bits are hard, but u will learn all the hard bits.
     

    Sorye HK

    Looking around here and there
    3,363
    Posts
    20
    Years
    • Seen Dec 1, 2021
    You have to make some obstructions on the tiles.
     

    fudge01

    Uzumaki Naruto!
    916
    Posts
    20
    Years
    • Age 33
    • Seen Aug 28, 2006
    ive acctually just started and its pretty easy but i don't know java but i will learn my first map looks cool i got a pokemon ruby map
     

    Booda Sack

    Sphere Master
    300
    Posts
    19
    Years
  • 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.
     

    jaz_jaz

    The Elite Trainer
    97
    Posts
    19
    Years
  • Thanks for that, and i think that sphere is way more difficult than rpg maker but sphere as a game maker is much better.
     

    jaz_jaz

    The Elite Trainer
    97
    Posts
    19
    Years
  • 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.
     

    Sorye HK

    Looking around here and there
    3,363
    Posts
    20
    Years
    • Seen Dec 1, 2021
    You can make online games with Sphere. I haven't made one yet, though.
     

    Booda Sack

    Sphere Master
    300
    Posts
    19
    Years
  • Yes you could make one online but it would extremly slow.
    And Jaz_Jaz if you are new to java script and sphere I would suggest you stay of the online stuff untill you are profficient with js.
     

    jaz_jaz

    The Elite Trainer
    97
    Posts
    19
    Years
  • 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:

    Booda Sack

    Sphere Master
    300
    Posts
    19
    Years
  • 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);


    }
     
    418
    Posts
    20
    Years
  • lol maybe you should learn some stuff from tutorial and stuff then try it all, youll find it easier with a background
     

    jaz_jaz

    The Elite Trainer
    97
    Posts
    19
    Years
  • 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