Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-25 18:13:22 -04:00
parent 684ef76c20
commit 499aba4eb3
5734 changed files with 4843758 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
//:://////////////////////////////////////////////
//:: Created By: Donny Wilbanks
//:: Created On: 6/24/03
//:://////////////////////////////////////////////
#include "asg_i_dbplayer"
void main()
{
int iLast = GetLocalInt(GetModule(),"LAST_PB_UPDATEjano");
iLast = iLast + 1 ;
float i = 0.0;
if (iLast >= 50 )
{
SetLocalInt(GetModule(),"LAST_PB_UPDATEjano",0);
object oPlayer = GetFirstPC();
while (GetIsObjectValid(oPlayer))
{
SendMessageToPC(oPlayer,"Saving All Character Files...");
i = i +5.0;
PlayerDatabase("W",oPlayer);
DelayCommand(i,ExportSingleCharacter(oPlayer));
oPlayer = GetNextPC();
}
}
else
{
SetLocalInt(GetModule(),"LAST_PB_UPDATEjano",iLast);
}
}