commit
3d9eb93cef
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Irresistible Gaming 2018
|
* Irresistible Gaming 2018
|
||||||
* Developed by Lorenc Pekaj
|
* Developed by Lorenc Pekaj
|
||||||
* Module: main.inc
|
* Module: _main.inc
|
||||||
* Purpose: centralize includes
|
* Purpose: centralize includes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -28,30 +28,3 @@
|
|||||||
// cnr configuration
|
// cnr configuration
|
||||||
#include "irresistible\cnr\_cnr.pwn"
|
#include "irresistible\cnr\_cnr.pwn"
|
||||||
|
|
||||||
// commands
|
|
||||||
|
|
||||||
// features
|
|
||||||
#include "irresistible\features\fps.pwn"
|
|
||||||
#include "irresistible\features\radio.pwn"
|
|
||||||
#include "irresistible\features\cash_cards.pwn"
|
|
||||||
#include "irresistible\features\furniture.pwn"
|
|
||||||
#include "irresistible\features\weapon_drop.pwn"
|
|
||||||
#include "irresistible\features\ammunation.pwn"
|
|
||||||
#include "irresistible\features\duel.pwn"
|
|
||||||
#include "irresistible\features\crowdfund.pwn"
|
|
||||||
// #include "irresistible\features\pilot.pwn"
|
|
||||||
// #include "irresistible\features\fishing.pwn"
|
|
||||||
// #include "irresistible\features\vote.pwn"
|
|
||||||
|
|
||||||
// gangs and facilities
|
|
||||||
#include "irresistible\features\gangs\gangs.pwn"
|
|
||||||
#include "irresistible\features\gangs\facilities.pwn"
|
|
||||||
#include "irresistible\features\gangs\turfs.pwn"
|
|
||||||
#include "irresistible\features\gangs\cannon.pwn"
|
|
||||||
// #include "irresistible\features\gangs\gvehicles.pwn"
|
|
||||||
|
|
||||||
// visage casino
|
|
||||||
#include "irresistible\features\visage\_visage.pwn"
|
|
||||||
|
|
||||||
// static cnr features
|
|
||||||
#include "irresistible\cnr\static\_cnr_static.pwn"
|
|
||||||
|
@ -2,10 +2,12 @@
|
|||||||
* Irresistible Gaming (c) 2018
|
* Irresistible Gaming (c) 2018
|
||||||
* Developed by Lorenc Pekaj
|
* Developed by Lorenc Pekaj
|
||||||
* Module: cnr/_cnr.pwn
|
* Module: cnr/_cnr.pwn
|
||||||
* Purpose: ecnloses all cnr related components (cnr)
|
* Purpose: encloses all cnr related components (cnr)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* ** Includes ** */
|
/* ** Includes ** */
|
||||||
|
|
||||||
|
// core
|
||||||
#include "irresistible\cnr\player.pwn"
|
#include "irresistible\cnr\player.pwn"
|
||||||
#include "irresistible\cnr\global.pwn"
|
#include "irresistible\cnr\global.pwn"
|
||||||
#include "irresistible\cnr\classes.pwn"
|
#include "irresistible\cnr\classes.pwn"
|
||||||
@ -13,4 +15,13 @@
|
|||||||
#include "irresistible\cnr\cities.pwn"
|
#include "irresistible\cnr\cities.pwn"
|
||||||
#include "irresistible\cnr\dialog_ids.pwn"
|
#include "irresistible\cnr\dialog_ids.pwn"
|
||||||
#include "irresistible\cnr\vip.pwn"
|
#include "irresistible\cnr\vip.pwn"
|
||||||
|
|
||||||
|
// static cnr features
|
||||||
|
#include "irresistible\cnr\static\_cnr_static.pwn"
|
||||||
|
|
||||||
|
// features
|
||||||
|
#include "irresistible\cnr\features\_features.pwn"
|
||||||
|
|
||||||
|
// commands
|
||||||
#include "irresistible\cnr\commands\_commands.pwn"
|
#include "irresistible\cnr\commands\_commands.pwn"
|
||||||
|
|
||||||
|
27
gamemodes/irresistible/cnr/features/_features.pwn
Normal file
27
gamemodes/irresistible/cnr/features/_features.pwn
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Irresistible Gaming (c) 2018
|
||||||
|
* Developed by Lorenc Pekaj
|
||||||
|
* Module: cnr\features\_features.pwn
|
||||||
|
* Purpose: encloses all feature modules & components (cnr)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* ** Includes ** */
|
||||||
|
|
||||||
|
// core
|
||||||
|
#include "irresistible\cnr\features\fps.pwn"
|
||||||
|
#include "irresistible\cnr\features\radio.pwn"
|
||||||
|
#include "irresistible\cnr\features\cash_cards.pwn"
|
||||||
|
#include "irresistible\cnr\features\furniture.pwn"
|
||||||
|
#include "irresistible\cnr\features\weapon_drop.pwn"
|
||||||
|
#include "irresistible\cnr\features\ammunation.pwn"
|
||||||
|
#include "irresistible\cnr\features\duel.pwn"
|
||||||
|
#include "irresistible\cnr\features\crowdfund.pwn"
|
||||||
|
// #include "irresistible\cnr\features\pilot.pwn"
|
||||||
|
// #include "irresistible\cnr\features\fishing.pwn"
|
||||||
|
// #include "irresistible\cnr\features\vote.pwn"
|
||||||
|
|
||||||
|
// gangs and facilities
|
||||||
|
#include "irresistible\cnr\features\gangs\_gangs.pwn"
|
||||||
|
|
||||||
|
// visage casino
|
||||||
|
#include "irresistible\cnr\features\visage\_visage.pwn"
|
13
gamemodes/irresistible/cnr/features/gangs/_gangs.pwn
Normal file
13
gamemodes/irresistible/cnr/features/gangs/_gangs.pwn
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
/*
|
||||||
|
* Irresistible Gaming (c) 2018
|
||||||
|
* Developed by Lorenc Pekaj
|
||||||
|
* Module: cnr\features\gangs\_gangs.pwn
|
||||||
|
* Purpose: encloses all gang and facility related modules (cnr)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* ** Includes ** */
|
||||||
|
#include "irresistible\cnr\features\gangs\gangs.pwn"
|
||||||
|
#include "irresistible\cnr\features\gangs\facilities.pwn"
|
||||||
|
#include "irresistible\cnr\features\gangs\turfs.pwn"
|
||||||
|
#include "irresistible\cnr\features\gangs\cannon.pwn"
|
||||||
|
// #include "irresistible\features\gangs\gvehicles.pwn"
|
15
gamemodes/irresistible/cnr/features/visage/_visage.pwn
Normal file
15
gamemodes/irresistible/cnr/features/visage/_visage.pwn
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/*
|
||||||
|
* Irresistible Gaming (c) 2018
|
||||||
|
* Developed by Lorenc Pekaj
|
||||||
|
* Module: visage/visage.pwn
|
||||||
|
* Purpose: encloses all visage/casino related modules (warning: order of includes is very important)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* ** Includes ** */
|
||||||
|
#include "irresistible\cnr\features\visage\roulette.pwn"
|
||||||
|
#include "irresistible\cnr\features\visage\blackjack.pwn"
|
||||||
|
#include "irresistible\cnr\features\visage\poker.pwn"
|
||||||
|
#include "irresistible\cnr\features\visage\fireworks.pwn"
|
||||||
|
#include "irresistible\cnr\features\visage\casino.pwn"
|
||||||
|
#include "irresistible\cnr\features\visage\apartments.pwn"
|
||||||
|
#include "irresistible\cnr\features\visage\boxing.pwn"
|
@ -1,15 +0,0 @@
|
|||||||
/*
|
|
||||||
* Irresistible Gaming (c) 2018
|
|
||||||
* Developed by Lorenc Pekaj
|
|
||||||
* Module: visage/visage.pwn
|
|
||||||
* Purpose: encloses all visage/casino related modules (warning: order of includes is very important)
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* ** Includes ** */
|
|
||||||
#include "irresistible\features\visage\roulette.pwn"
|
|
||||||
#include "irresistible\features\visage\blackjack.pwn"
|
|
||||||
#include "irresistible\features\visage\poker.pwn"
|
|
||||||
#include "irresistible\features\visage\fireworks.pwn"
|
|
||||||
#include "irresistible\features\visage\casino.pwn"
|
|
||||||
#include "irresistible\features\visage\apartments.pwn"
|
|
||||||
#include "irresistible\features\visage\boxing.pwn"
|
|
Loading…
Reference in New Issue
Block a user