Friday, May 27, 2016

NIBSHDotNet and NIBMods menu troubleshooting

Tips:

-Run game as Administrator, check how to do this clicking here.


-Case the mod menu don't appear after selecting it on the NIBMods menu, maybe its a issue related to the characters, suits or armors .ini files in Scripts\Characters (suits or armors) folder, delete all character .ini files from that folder and in game press Insert to reload scripts.


-You need internet access to login validation (if needed by mod)



###########################################################################



Know issues that make the NIBmods menu don't work when you press Ctrl + N.

Obs.: I'm considering that you have the ScripthookV, ASI Loader and NIBSHDotNet installed. Case you didn't installed them yet, check this post.

Those issues are commonly related to problems with the NIBSHDotNet plugin, basically what can happen is:


Issue #1: ASI Loader fails to load NIBSHDotNet

If even with correct version of NIBSHDotNet your mods menu still don't load it may be result of NIBSHDotNet not even being loaded, to confirm this case open the asiloader LOG file and see the line that refers to the NIBSHDotNet, if you find something like this:

Loading "...\Grand Theft Auto V\NIBSHDotNet_loader.asi"
     "NIBSHDotNet_loader.asi" failed to load

SOLUTION: You need to check if your windows have the required windows packages installed and working, the packages are:


-Microsoft .NET Framework 4.5 (direct link)
-Microsoft .NET Framework 4.5.2 (direct link)
-Visual C++ Redistributable Package for Visual Studio 2013 (x64) (direct link)
-Visual C++ Redistributable for Visual Studio 2015 (x64) (direct link)



Issue #2: Scripts not in scripts folder

SOLUTION: Make sure that the scripts (.dll or .ndll files of the mod) are in the gta Scripts folder, otherwise the NIBSHDotNet  can't find and load them. My mods goes with a ZIP file with the structure that you can simple copy and paste in game root folder for easy installation or come in .OIV format for easier setup using OpenIV package installer.

Saturday, May 21, 2016

GTA V - CriminalsV script mod

This mod will make some crimes start on city at random times or you can trigger them in the mod menu.







Download

***
If you want share or make videos of this mod, please use the following link as reference in description: 
http://gtaxscripting.blogspot.com/2016/05/gta-v-criminalsv-script-mod.html

Thanks
***

Installation

Extract all files from folder CriminalsV1.2.1 to gta Scripts folder

Install NIBSHDotNet


Hotkeys

Ctrl + N - Show mods menu (Controller: Left + right shoulder)
E - Toggle weapon mode (Controller: DPad right)
D1 (number 1 close to QWE keys) - Select machine gun in special vehicle
D2 - Select missile launcher in special vehicle
D3 - Release tyre spikes in special vehicle (Controller: DPad down)
Shift - Special boost (Controller: X)
Shoot - Left mouse button (Controller: A)


About this mod

We have crimes like:

Small stores robbery
Bank robbery
Tank robbery
Cash machine robbery
and more...

The script will apply a reduced weapon damage from enemies to make things more possible for normal player, but
if you use a super hero mod with more health like HULK or ironman the damage will be increase to default :)

The damage also increases with the respect amount, if you kill enemies their respect level will reduce until -100%
then you will have up to 33% more damage from enemies.

You also can customize some cars in the "Suspicious Garage", a icon (mechanic tools icon) will appear on map.
There you can:

-Fix vehicle
-Add bullet/explosion protection
-Add machine guns
-Add missiles
-Add tyre spikes
-Add special boost

You can use the mod menu to call a special vehicle delivery
You can use the mod menu to call a special ride

Killing cops/innocent people will make the cops respect decrease

If you succeed stopping a crime the wanted level should be reseted to zero


Credits

JulioNIB
ASI Loader + ScripthookV by Alexander blade

Screens









Monday, May 9, 2016

GTA V - Blips ID and Image

All blips found in game with a "For" statement.

*For statement from 1 to 1000
*462 seems to be the last one
*Screenshots from game screen
*Some blips are reduced to fit the area, ex. 4, 5, 9...
*Some blips don't seems to have a image, ex. 29, 30, 31...

For Blip methods check the link: http://www.dev-c.com/nativedb/ns/UI


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462
//propaganda YT float style='display:none;'