Email System - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Email System (
/showthread.php?tid=428657)
Email System -
Johnny_DeVito - 06.04.2013
Hi, can someone explain to me how to make an email system for my gamemode in registration.
BTW. i using y_ini
Re: Email System -
Stealthy - 06.04.2013
What do you mean by ''In registration''?
Re: Email System -
Johnny_DeVito - 06.04.2013
You know, afrer, Choosing Age, Sex, Country...
Re: Email System -
Stealthy - 06.04.2013
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
Re: Email System -
Coltmaster - 06.04.2013
Do you have a mailserver available?
Re: Email System -
absolute - 06.04.2013
Please search before posting
https://sampforum.blast.hk/showthread.php?tid=351065
Re: Email System -
Johnny_DeVito - 06.04.2013
I using y_ini, and this is mysql, and thats not what i want.
And, i using "search" optinon, but nothin' found
Re: Email System -
Johnny_DeVito - 06.04.2013
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.
Re: Email System -
teomakedonija - 06.04.2013
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;
}
}