Posts: 60
Threads: 28
Joined: Dec 2014
Reputation:
0
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
Posts: 93
Threads: 16
Joined: Apr 2013
Reputation:
0
If you using pawno i suggest you to search it from there.
Posts: 617
Threads: 129
Joined: Feb 2014
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
Posts: 1,206
Threads: 39
Joined: Feb 2014
Reputation:
0
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.