Email System
#1

Hi, can someone explain to me how to make an email system for my gamemode in registration.
BTW. i using y_ini
Reply
#2

What do you mean by ''In registration''?
Reply
#3

You know, afrer, Choosing Age, Sex, Country...
Reply
#4

There are couple filterscripts around the forum, please use ''search'' option

One I found in less than a second was https://sampforum.blast.hk/showthread.php?pid=960768#pid960768
Reply
#5

Do you have a mailserver available?
Reply
#6

Please search before posting
https://sampforum.blast.hk/showthread.php?tid=351065
Reply
#7

I using y_ini, and this is mysql, and thats not what i want.

And, i using "search" optinon, but nothin' found
Reply
#8

Yes, but how to make a Dialog:

Please type your email:

and after i type it, i get a message on my real e-mail, like Welcome, or something like that.
Reply
#9

pawn Код:
pEmail,

OnPlayerSpawn

if(PlayerInfo[playerid][pEmail] == 0)
{
ShowPlayerDialog(playerid, 1928, DIALGO_STYLE_INPUT, "Email","Type your Email Adress to Security Your Account","OK","Exit");
}

OnDialogResponse

if(dialogid == 1928)
{
if(response)
{
PlayerInfo[playerid][pEmail] = inputtext;
SendClientMessage(playerid, COLOR_WHITE, "You putted an Email type: %s", PlayerInfo[playerid][pEmail]);
Email[playerid] = 1;
}
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)