public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch( dialogid )
{
case 2:
{
if (!response) return Kick(playerid);
if(response)
{
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, ""COL_WHITE"Registering...",""COL_RED"You have entered an invalid password.\n"COL_WHITE"Type your password below to register a new account.","Register","Quit");
new INI:File = INI_Open(UserPath(playerid));
INI_SetTag(File,"data");
INI_WriteInt(File,"Password",udb_hash(inputtext));
INI_WriteInt(File,"Cash",0);
INI_WriteInt(File,"Admin",0);
INI_WriteInt(File,"Kills",0);
INI_WriteInt(File,"Deaths",0);
INI_Close(File);
SetSpawnInfo(playerid, 0, 0, 1958.33, 1343.12, 15.36, 269.15, 0, 0, 0, 0, 0, 0);
SpawnPlayer(playerid);
}
}
case 1:
{
if ( !response ) return Kick ( playerid );
if( response )
{
if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
}
else
{
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_RED"You have entered an incorrect password.\n"COL_WHITE"Type your password below to login.","Login","Quit");
}
return 1;
}
}
}
return 1;
}
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid, PlayerInfo[playerid][pLastX], PlayerInfo[playerid][pLastY], PlayerInfo[playerid][pLastZ]);
return 1;
}
SetSpawnInfo( playerid, 0, 0, 1958.33, 1343.12, 15.36, 269.15, 0, 0, 0, 0, 0, 0 );
SpawnPlayer( playerid );
That's the point, player isn't allowed to change skin there. It's a rp mod and he need to go to clothes shop or something...
|
if ( !response ) return Kick ( playerid ); if( response )
if ( !response ) return Kick ( playerid );
if( response )
i dont understand why you put
Код:
if ( !response ) return Kick ( playerid ); if( response ) ![]() |
// 1st:
if( !response ) return Kick( playerid );
if( response )
{
// Code
}
// 2nd:
if( !response ) return Kick( playerid );
else
{
// Code
}
// 3rd:
if( !response ) return Kick( playerid );
// Code
That's the point, player isn't allowed to change skin there. It's a rp mod and he need to go to clothes shop or something...
|
SpawnLastKnownPos(playerid);
forward SpawnLastKnownPos(playerid);
public SpawnLastKnownPos(playerid)
{
SetSpawnInfo(playerid,0,PlayerInfo[playerid][pSkin],0,0,0,0,0,0,0,0,0,0);
SpawnPlayer(playerid);
SetPlayerPos(playerid, PlayerInfo[playerid][pLastX], PlayerInfo[playerid][pLastY], PlayerInfo[playerid][pLastZ]);
return 1;
}