02.06.2011, 09:53
PHP код:
//DIALOGS!
if(dialogid == TUT1)
{
if(response)
{
ShowPlayerDialog(playerid, TUT2, DIALOG_STYLE_MSGBOX, "Step one:", "Please state your characters sex. (Male or Female)","Male","Female");
}
if(!response)
{
ShowPlayerDialog(playerid, TUT1, DIALOG_STYLE_MSGBOX, "Welcome to Abandoned Roleplay","Abandoned Roleplay is a heavy roleplay community, breaking the rules will result in a ban.","OK","");
}
}
if(dialogid == TUT2)
{
if(response)
{
PlayerInfo[playerid][pMale] = 1;
SendClientMessage(playerid, COLOR_WHITE, "[Volt 205] Okay, so you are a Male.");
ShowPlayerDialog(playerid, TUT3, DIALOG_STYLE_INPUT, "Step two:","Now, what would your character look like? ((Enter skin ID!))","Confirm","");
}
if(!response)
{
PlayerInfo[playerid][pFemale] = 1;
SendClientMessage(playerid, COLOR_WHITE, "[Volt 205] Okay, so you are a Female.");
ShowPlayerDialog(playerid, TUT3, DIALOG_STYLE_INPUT, "Step two:","Now, what would your character look like? ((Enter skin ID!))","Confirm","");
}
}