Dialog Ids getting mixed up with Gamemode & FS.
#18

Quote:
Originally Posted by Gryphus One
Посмотреть сообщение
Are you using any variables to store dialogs or something?
I just define the dialogues with IDs at the top of my script. (code below)

pawn Код:
//Dialogs.
#define DIALOG_CLICKEDREG       220
#define DIALOG_CLICKEDLOGIN     221
#define DIALOG_REGISTER         222
#define DIALOG_GENDER           223
#define DIALOG_RACE             224
#define DIALOG_ARRIVAL          225
#define DIALOG_AGE              226
#define DIALOG_RELOGMSG         227
#define DIALOG_LOGIN            228
#define DIALOG_SUCCESS_1        229
#define DIALOG_SUCCESS_2        230
#define DIALOG_QUESTION1        231
#define DIALOG_QUESTION2        232
#define DIALOG_QUESTION3        233
#define DIALOG_QUESTION4        234
#define DIALOG_QUESTION5        235
#define DIALOG_QUESTION6        236
#define DIALOG_QUESTION7        237
#define DIALOG_QUESTION8        238

#define DIALOG_GOTOLOC          239

#define DIALOG_IDLEGASBUY       240
#define DIALOG_IDLESTACKEAT     241
#define DIALOG_MARINABURGEREAT  242
#define DIALOG_JEFFERSONS24/7BUY   243

#define DIALOG_VEHICLEBUY           244
#define DIALOG_VEHICLEBUY2DOOR      245
#define DIALOG_VEHICLEBUY4DOOR      246
#define DIALOG_VEHICLEBUYLOWRIDER   247
#define DIALOG_VEHICLEBUY4BY4       248
#define DIALOG_VEHICLEBUYSALOON     249

#define DIALOG_IDBUY                250
#define DIALOG_LICENSEBUY           251
And Sasinoft does the same thing with his dialogues.
pawn Код:
// Dialogs
#define DIALOG_FORSALE_HOUSE 470 //
#define DIALOG_MY_HOUSE 471 //
#define DIALOG_OTHERS_HOUSE 472 //
#define DIALOG_FORSALE_BIZ 473 //
#define DIALOG_MY_BIZ 474 //
#define DIALOG_OTHERS_BIZ 475 //
#define DIALOG_HOUSE_MENU 476 //
#define DIALOG_SELL_HOUSE 477 //
#define DIALOG_RENAME_SHOP 478 //
#define DIALOG_SELL_SHOP 479 //
#define DIALOG_SUPPLY 480 //
#define DIALOG_STORE_MONEY 481 //
#define DIALOG_WITHDRAW_MONEY 482 //
#define DIALOG_EDIT_FURNITURE 483 //
#define DIALOG_SELL_FURNITURE 484 //
#define DIALOG_BUY_FURNITURE 485 //
#define DIALOG_MOVE_FURNITURE 486 //
#define DIALOG_FURNITURE_BOUGHT 487 //
#define DIALOG_SHOP 488 //
#define DIALOG_SHOP_MENU 489 //
Any ideas?
Reply


Messages In This Thread
Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 02.07.2013, 19:47
Re: Dialog Ids getting mixed up with Gamemode & FS. - by jueix - 02.07.2013, 20:05
Re: Dialog Ids getting mixed up with Gamemode & FS. - by shadowdog - 02.07.2013, 20:06
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 02.07.2013, 20:33
Re: Dialog Ids getting mixed up with Gamemode & FS. - by shadowdog - 02.07.2013, 20:55
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 02.07.2013, 21:12
Re: Dialog Ids getting mixed up with Gamemode & FS. - by shadowdog - 02.07.2013, 21:36
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 02.07.2013, 21:56
Re: Dialog Ids getting mixed up with Gamemode & FS. - by shadowdog - 02.07.2013, 22:38
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 02.07.2013, 22:46
Re: Dialog Ids getting mixed up with Gamemode & FS. - by shadowdog - 03.07.2013, 12:42
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 03.07.2013, 13:43
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 04.07.2013, 13:13
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 05.07.2013, 14:17
Re: Dialog Ids getting mixed up with Gamemode & FS. - by drichie - 05.07.2013, 14:28
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 05.07.2013, 14:36
Respuesta: Re: Dialog Ids getting mixed up with Gamemode & FS. - by Gryphus One - 05.07.2013, 17:30
Re: Respuesta: Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 05.07.2013, 17:45
Respuesta: Dialog Ids getting mixed up with Gamemode & FS. - by Gryphus One - 05.07.2013, 17:58
Re: Respuesta: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 05.07.2013, 18:27
Respuesta: Dialog Ids getting mixed up with Gamemode & FS. - by Gryphus One - 06.07.2013, 16:09
Re: Respuesta: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 06.07.2013, 16:44
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Konstantinos - 06.07.2013, 17:04
Re: Dialog Ids getting mixed up with Gamemode & FS. - by EiresJason - 06.07.2013, 20:27
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 01:47
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Emmet_ - 14.01.2014, 01:53
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 01:59
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 02:05
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Emmet_ - 14.01.2014, 02:07
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 02:10
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 02:14
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 02:21
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Pottus - 14.01.2014, 02:22
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 02:28
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Pottus - 14.01.2014, 02:39
Re: Dialog Ids getting mixed up with Gamemode & FS. - by Swisher - 14.01.2014, 02:40

Forum Jump:


Users browsing this thread: 3 Guest(s)