fca-h4m1m-x2 1.5.2 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- name: "fca-h4m1m-x2.2"
1
+ name: "fca-hamim"
2
2
 
3
3
  on: push
4
4
 
@@ -17,4 +17,4 @@ jobs:
17
17
  run: npm publish --access public
18
18
  working-directory:
19
19
  env:
20
- NODE_AUTH_TOKEN: ${{secrets.hamimx2}}
20
+ NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN2}}
@@ -18,7 +18,7 @@
18
18
  "SubmitErrSuccess": "Error Report Sent To Server !",
19
19
  "ErrorWhileSendErr": "An error occurred while trying to send an error to the server !",
20
20
  "OnProcess": "Start the Login Process !",
21
- "BackupNoti": "Changing AppState From Backup, If This Continues, Contact Fb.com/Lazic.Kanzu",
21
+ "BackupNoti": "Changing AppState From Backup, If This Continues, Contact Fb.com/HACKER.HAMIM.BHAI",
22
22
  "ErrGetPassWord": "Error Retrieving AppState Encryption Password !",
23
23
  "ErrGenerateKey": "Error Creating Password For AppState !",
24
24
  "UnsupportedDevice": "Your Operating System Is Currently Not Supported !",
@@ -55,7 +55,7 @@
55
55
  "TypeAccountError": "The account needs to be an ID or Phone number or Gmail!",
56
56
  "ErrDataBase": "Error When Setting Auto Login Data !",
57
57
  "SuccessSetData": "Auto Login Data Set Successfully !",
58
- "Missing": "Please Code 2Fa According to the Photo's Guide in FastConfigFca.json Series AuthString!",
58
+ "Missing": "Please Code 2Fa According to the Photo's Guide in X2ConfigFCA.json Series AuthString!",
59
59
  "EnterSecurityCode": "Enter your 2-Factor Authentication Code: ",
60
60
  "ErrThroughCookies": "2Fa Piercing Error Occurred, Enter Code 2Fa Again! ",
61
61
 
@@ -64,7 +64,7 @@
64
64
  "DownloadingNode": "Downloading node version v14 which is supported!",
65
65
  "NodeDownloadingComplete": "Successfully downloaded node version v14!",
66
66
  "RestartRequire": "Download successful, user needs to restart the computer to take effect!",
67
- "ErrNodeDownload": "An error occurred while automatically downloading node version 14, please contact fb.com/lazic.kanzu!",
67
+ "ErrNodeDownload": "An error occurred while automatically downloading node version 14, please contact fb.com/HACKER.HAMIM.BHAI",
68
68
  "RestartingN": "Restarting the program",
69
69
  "Rebuilding": "Rebuilding npm package to avoid errors !",
70
70
  "ErrRebuilding": "An error occurred in the rebuilding area - npm install",
@@ -76,13 +76,13 @@
76
76
  "Ws_TypeUserName": "Please enter a username for your websocket extension account: ",
77
77
  "Ws_TypePassWord": "Please enter a password for your websocket extension account: ",
78
78
  "Ws_Success": "Successfully set data for websocket extension!",
79
- "Ws_2Fa": "This is your two-factor authentication (2FA) code for horizon_extension. Please use Google Authenticator to retrieve the backup code in case you forget your password or require verification.\n\n=> Here: %1",
79
+ "Ws_2Fa": "Please use Google Authenticator to retrieve the backup code in case you forget your password or require verification.\n\n=> Here: %1",
80
80
  "Ws_2Fa_Check": "Please enter your 2FA code from the authentication app: ",
81
81
 
82
82
  "WishMessage": [
83
83
  "Have a Nice Day !",
84
84
  "Please Report To Admin When There Is Error in FCA !",
85
- "Thank You For Using Horizon's FCA !"
85
+ "Thank You For Using Hamim's FCA !"
86
86
  ]
87
87
  },
88
88
  "ExtraGetThread": {
package/index.js CHANGED
@@ -117,25 +117,25 @@ try {
117
117
  let All_Variable = Boolean_Fca.concat(String_Fca,Number_Fca,Object_Fca);
118
118
 
119
119
 
120
- if (!global.Fca.Require.fs.existsSync(process.cwd() + '/FastConfigFca.json')) {
121
- global.Fca.Require.fs.writeFileSync(process.cwd() + "/FastConfigFca.json", JSON.stringify(global.Fca.Data.ObjFastConfig, null, "\t"));
120
+ if (!global.Fca.Require.fs.existsSync(process.cwd() + '/FcaX2.json')) {
121
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/FcaX2.json", JSON.stringify(global.Fca.Data.ObjFastConfig, null, "\t"));
122
122
  process.exit(1);
123
123
  }
124
124
 
125
125
  try {
126
- var Data_Setting = require(process.cwd() + "/FastConfigFca.json");
126
+ var Data_Setting = require(process.cwd() + "/FcaX2.json");
127
127
  }
128
128
  catch (e) {
129
- global.Fca.Require.logger.Error('Detect Your FastConfigFca Settings Invalid!, Carry out default restoration');
130
- global.Fca.Require.fs.writeFileSync(process.cwd() + "/FastConfigFca.json", JSON.stringify(global.Fca.Data.ObjFastConfig, null, "\t"));
129
+ global.Fca.Require.logger.Error('Detect Your FcaX2 Settings Invalid!, Carry out default restoration');
130
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/FcaX2.json", JSON.stringify(global.Fca.Data.ObjFastConfig, null, "\t"));
131
131
  process.exit(1)
132
132
  }
133
- if (global.Fca.Require.fs.existsSync(process.cwd() + '/FastConfigFca.json')) {
133
+ if (global.Fca.Require.fs.existsSync(process.cwd() + '/FcaX2.json')) {
134
134
 
135
135
  for (let i of All_Variable) {
136
136
  if (Data_Setting[i] == undefined) {
137
137
  Data_Setting[i] = global.Fca.Data.ObjFastConfig[i];
138
- global.Fca.Require.fs.writeFileSync(process.cwd() + "/FastConfigFca.json", JSON.stringify(Data_Setting, null, "\t"));
138
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/FcaX2.json", JSON.stringify(Data_Setting, null, "\t"));
139
139
  }
140
140
  else continue;
141
141
  } //Check Variable
@@ -156,7 +156,7 @@ catch (e) {
156
156
  else if (Object_Fca.includes(i)) {
157
157
  if (global.Fca.Require.utils.getType(Data_Setting[i]) != "Object") {
158
158
  Data_Setting[i] = global.Fca.Data.ObjFastConfig[i];
159
- global.Fca.Require.fs.writeFileSync(process.cwd() + "/FastConfigFca.json", JSON.stringify(Data_Setting, null, "\t"));
159
+ global.Fca.Require.fs.writeFileSync(process.cwd() + "/FcaX2.json", JSON.stringify(Data_Setting, null, "\t"));
160
160
  }
161
161
  else continue;
162
162
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fca-h4m1m-x2",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "Facebook-chat-api remake by One Man HamimX2",
5
5
  "main": "index.js",
6
6
  "scripts": {