01.01.2016, 23:45
Hi, I just started working on a gamemode from 0, just to practice myself after fiddling with some premade gamemodes. These are my questions:
1. So I used a Login-Register account system made by Kush here, and followed the tutorial to implement it. Now, everything was perfect, I've set my spawn coordinates here:
(Under OnDialogResponse, that' what's supposed to happen after you hit register), and the same thing under the login dialog.
I also set this under OnGameModeInIt:
.
Now, is that generally how you set the new player spawn? Because now when I hit that register/login button, it shows me that LV casino staircase thing and I need to hit SPAWN in order to get myself to the spawn that I set it to.
2. This question is also about the account system that I'm using. I've noticed that when I register an account that is similiarly named to a preexistant account, they get the same stats. Why does this happen?
3. You know those fancy register scenes that show up when you're signing up/in? How do they do that? So far, mine is the regular Los Santos coastline that shows up while you're connecting. I also saw servers having black frames around, how is that doable?
Thanks in advance guys
1. So I used a Login-Register account system made by Kush here, and followed the tutorial to implement it. Now, everything was perfect, I've set my spawn coordinates here:
Код:
SetSpawnInfo(playerid, 0, 101, 1685.8156, -2332.9292, -2.6797, 357.3618, 0, 0, 0, 0, 0, 0); SpawnPlayer(playerid);
I also set this under OnGameModeInIt:
Код:
AddPlayerClass(101,1685.8156,-2332.9292,-2.6797,357.3618,0,0,0,0,0,0);
Now, is that generally how you set the new player spawn? Because now when I hit that register/login button, it shows me that LV casino staircase thing and I need to hit SPAWN in order to get myself to the spawn that I set it to.
2. This question is also about the account system that I'm using. I've noticed that when I register an account that is similiarly named to a preexistant account, they get the same stats. Why does this happen?
3. You know those fancy register scenes that show up when you're signing up/in? How do they do that? So far, mine is the regular Los Santos coastline that shows up while you're connecting. I also saw servers having black frames around, how is that doable?
Thanks in advance guys