Vice City Multiplayer

VC:MP => mIRC/pawn Scripting => Topic started by: Kingston on March 01, 2010, 05:33:15 PM

Title: Problem...
Post by: Kingston on March 01, 2010, 05:33:15 PM
problem...

In time i am ending editing  Mode Server In Pawno , i click In F5 ,

in i Klick F5 The Mode.AMX is Deleting , Why ??

Please Help ...

Thanks...
Title: Re: Problem...
Post by: Knucis on March 01, 2010, 05:57:36 PM
Oh ffs. Turn those colors off.. I can't see a shit.

Well, be racional man, if it deletes ur AMX. ITS BECAUSE SOMETHING IS wrong in the script...
Title: Re: Problem...
Post by: Kingston on March 01, 2010, 06:38:02 PM
Quote from: Knucis on March 01, 2010, 05:57:36 PM
Oh ffs. Turn those colors off.. I can't see a shit.

Well, be racional man, if it deletes ur AMX. ITS BECAUSE SOMETHING IS wrong in the script...

example...

give me a example
Title: Re: Problem...
Post by: Ettans on March 01, 2010, 06:47:20 PM
We can't give you an example. Does the compiler give you any errors or warnings? Copy paste the log.
Title: Re: Problem...
Post by: Kingston on March 01, 2010, 07:18:33 PM
Quote from: Ettans on March 01, 2010, 06:47:20 PM
We can't give you an example. Does the compiler give you any errors or warnings? Copy paste the log.

Ok look

i am have a problem
in time i am edit this

public StatusTag(level)
{
   new x[256];
   if (level == 1) x = "Member";
   else if (level == 2) x = "Protected Member";
   else if (level == 3) x = "Half Admin";
   else if (level == 4) x = "Admin";
   else if (level == 5) x = "Admin";
   else if (level == 6) x = "Admin";
   else if (level == 7) x = "Admin";
   else if (level == 8) x = "Management";
   else if (level == 9) x = "Coordinator";
   else if (level == 10) x = "Server Owner";
   return x;
}


To THis


public StatusTag(level)
{
   new x[256];
   if (level == 1) x = "Member";
   else if (level == 2) x = "Protected Member";
   else if (level == 3) x = "Half Admin";
   else if (level == 4) x = "Admin";
   else if (level == 5) x = "Admin";
   else if (level == 6) x = "Admin";
   else if (level == 7) x = "Admin";
   else if (level == 8) x = "Management";
   else if (level == 9) x = "server Co-Leader";
   else if (level == 10) x = "Server Owner";
   return x;
}

the Mode.AMX is Deleting ...
can tell me why ??
can i make the Mode.AMX is not deleting ??
Title: Re: Problem...
Post by: Ettans on March 01, 2010, 07:33:54 PM
The code works for me, compiles fine. Please post the compile log (from the small window).
Title: Re: Problem...
Post by: Kingston on March 02, 2010, 12:49:08 PM
How to get the Error is accepted ?? ( How to Change anythink in Mode.PWN For no deleting Mode.AMX ????
Title: Re: Problem...
Post by: bilakispa on March 02, 2010, 01:06:09 PM
Quote from: Ettans on March 01, 2010, 06:47:20 PM
We can't give you an example. Does the compiler give you any errors or warnings? Copy paste the log.