What's wrong with my object mover?
#10

I think you are all missing something very obvious...
pawn Код:
enum
{
    DIALOG_x,
    DIALOG_y,
    DIALOG_z,
    DIALOG_model,
    DIALOG_delete,
    DIALOG_x2,
    DIALOG_y2,
    DIALOG_z2,
    DIALOG_move
}
Why are these dialog ids in an enum for? They need to be given separate values that make them unique from each other.
Change this:
pawn Код:
enum
{
    DIALOG_x,
    DIALOG_y,
    DIALOG_z,
    DIALOG_model,
    DIALOG_delete,
    DIALOG_x2,
    DIALOG_y2,
    DIALOG_z2,
    DIALOG_move
}
to this:
pawn Код:
#define DIALOG_x 1
#define DIALOG_y 2
#define DIALOG_z 3
#define DIALOG_model 4
#define DIALOG_delete 5
#define DIALOG_x2 6
#define DIALOG_y2 7
#define DIALOG_z2 8
#define DIALOG_move 9
Reply


Messages In This Thread
What's wrong with my object mover?????? PLS HELP! - by qkac1234 - 26.01.2013, 11:57
Re: What's wrong with my object mover? - by IgrexolonO - 26.01.2013, 12:00
Re: What's wrong with my object mover? - by daniboi229 - 26.01.2013, 12:00
Re: What's wrong with my object mover? - by qkac1234 - 26.01.2013, 12:04
Re: What's wrong with my object mover? - by daniboi229 - 26.01.2013, 12:05
Re: What's wrong with my object mover? - by qkac1234 - 26.01.2013, 12:11
Re: What's wrong with my object mover? - by IgrexolonO - 26.01.2013, 12:14
Re: What's wrong with my object mover? - by qkac1234 - 26.01.2013, 12:19
Re: What's wrong with my object mover? - by daniboi229 - 26.01.2013, 12:31
Re: What's wrong with my object mover? - by Threshold - 26.01.2013, 13:04

Forum Jump:


Users browsing this thread: 2 Guest(s)