[HELP] I spawn at Blueberry
#1

pawn Код:
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);
            }
        }

        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]);
                    SetSpawnInfo(playerid, 28,0,1743.1090,-1863.6298,13.5748,18.0448,0,0,0,0,0,0);
                }
                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;
}
I wanna spawn in this coordinates

Код:
28,0,1743.1090,-1863.6298,13.5748,18.0448,0,0,0,0,0,0
Reply


Messages In This Thread
[HELP] I spawn at Blueberry - by Jaber_Brown - 10.03.2012, 12:47
Re : [HELP] I spawn at Blueberry - by Jaber_Brown - 10.03.2012, 13:24
Re: [HELP] I spawn at Blueberry - by Scrillex - 10.03.2012, 13:25
Re: [HELP] I spawn at Blueberry - by Twisted_Insane - 10.03.2012, 13:25
Re : [HELP] I spawn at Blueberry - by Jaber_Brown - 10.03.2012, 13:27
Re : [HELP] I spawn at Blueberry - by Jaber_Brown - 10.03.2012, 13:33
Re: [HELP] I spawn at Blueberry - by Scrillex - 10.03.2012, 13:39
Re: [HELP] I spawn at Blueberry - by Twisted_Insane - 10.03.2012, 13:52

Forum Jump:


Users browsing this thread: 1 Guest(s)