SA-MP Forums Archive
Remove you must re-log to save your account - 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: Remove you must re-log to save your account (/showthread.php?tid=597257)



Remove you must re-log to save your account - TheMafien - 28.12.2015

I am using a script at the moment and is really new to scripting(my friend gave it to me) and it says when you join for the first time(You must relog to save your account) does anyone know how to remove this(I know how to use PAWNO etc)
Thanks


Re: Remove you must re-log to save your account - Ryan50 - 28.12.2015

If you using pawno i suggest you to search it from there.


Re: Remove you must re-log to save your account - 1fret - 28.12.2015

search for the text that you want to remove, in this case it is "Please relog to save your account". When you have found the text you can edit it to say something else or delete it.

for example
pawn Код:
SendClientMessage(playerid, OxFFFFFF,"Please relog to save your account");
// you can either delete the line are edit it to say something else
Also remember to delete anything that has to deal with the line, example defines,varieables etc....

Thats it


Re: Remove you must re-log to save your account - AndySedeyn - 28.12.2015

It is probably all being saved upon disconnection under the OnPlayerDisconnect callback. It is better to save data when it's changed and not all under OnPlayerDisconnect.


Re: Remove you must re-log to save your account - TheMafien - 28.12.2015

Thanks Everyone