Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - rohanaj60

Pages: 1 [2]
16
mIRC/pawn Scripting / Re: Plese help!!!
« on: March 19, 2014, 05:58:07 am »
Mujhe malum he..............................

17
mIRC/pawn Scripting / Re: Help
« on: March 19, 2014, 05:57:17 am »
oh yea right .. cops and robbers city is your server right?
then fix it yourself!
I fixed myself. not need your help
 lol

18
mIRC/pawn Scripting / Help
« on: March 18, 2014, 06:22:38 am »
C:\Users\Rohanaj60\Desktop\GUPS1.17.pwn(3798) : error 090: public functions may not return arrays (symbol "GetPlayerLocation")


                  Problem how to remove error
                          please help

19
Snippet Showroom / Re: Use !afk and go pissing
« on: March 17, 2014, 03:02:20 pm »
Hello! This is simple script which guarantees you protection of your player while you're pissing (OOC) ;).
All you need is just to paste this code:

In the beginning:
[pawn]
new playerisafk[MAX_PLAYERS];
new Float:px, Float:py, Float:pz;
[/pawn]

In public OnPlayerText(playerid, text[])
[pawn]

    new pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pname, sizeof(pname));
   if(strfind(text, "!afk", true, 0) != -1)
   {
      if(!playerisafk[playerid])
      {
           GetPlayerPos(playerid, px, py, pz);
          new string[256];
          format(string, sizeof(string), "%s is now AFK (Away from keyboard).", pname);
          SendClientMessageToAll(0xFF875AA, string);
          SetPlayerPos(playerid, 474.23223, -1717.48022, 62.5, 135, 0); // change date coords on your own (I've made it lighthouse's rooftop for a standart ;).
          TogglePlayerControllable(playerid, 0);
          playerisafk[playerid]=1;
      }
      else
      {
          SendClientMessage(playerid, 0xFF0000AA, "You are still in the AFK mode.");
      }
      return 1;
   }
   else if(strfind(text, "!back", true, 0) != -1)
   {
      if(!playerisafk[playerid])
      {
          SendClientMessage(playerid, 0xFF0000AA, "You are not in the AFK mode.");
      }
      else
      {
          new string2[256];
          format(string2, sizeof(string2), "%s is now Back", pname);
          SendClientMessageToAll(0xFF875AA, string2);
          SetPlayerPos(playerid, px, py, pz, 0, 0);
          TogglePlayerControllable(playerid, 1);
          playerisafk[playerid]=0;
      }
      return 1;
   }
[/pawn]

I tried to make it mo' advanced, so:
1st. You can't use !afk if you're already afk - it is for anti-abusing, 4 example, flooding.
2nd. You can't use !back if you aren't afk - specially for old people with sclerosis.
3rd. !back will return you to the place whr you used !afk.

Dank je voor uw aandacht  :D.

20
ShowRoom (pawn) / Re: Robbers and cops city By Me
« on: March 17, 2014, 02:37:06 pm »
I am editior and i Edit that server....
But there is bug...

21
ShowRoom (pawn) / [Removed] Robbers and cops city By Me
« on: March 17, 2014, 02:06:08 pm »
My New Server..
Robbers and cops city..........




Download link are below
Removed

22
ShowRoom (pawn) / Help me
« on: March 17, 2014, 12:31:46 pm »
Please help
Errors

                        Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase

Usage:   pawncc <filename> [filename...] [options]

Options:
         -A<num>  alignment in bytes of the data segment and the stack
         -a       output assembler code
         -C[+/-]  compact encoding for output file (default=+)
         -c<name> codepage name or number; e.g. 1252 for Windows Latin-1
         -Dpath   active directory path
         -d<num>  debugging level (default=-d1)
             0    no symbolic information, no run-time checks
             1    run-time checks, no symbolic information
             2    full debug information and dynamic checking
             3    same as -d2, but implies -O0
         -e<name> set name of error file (quiet compile)
         -H<hwnd> window handle to send a notification message on finish
         -i<name> path for include files
         -l       create list file (preprocess only)
         -o<name> set base name of (P-code) output file
         -O<num>  optimization level (default=-O1)
             0    no optimization
             1    JIT-compatible optimizations only
             2    full optimizations
         -p<name> set name of "prefix" file
         -r[name] write cross reference report to console or to specified file
         -S<num>  stack/heap size in cells (default=4096)
         -s<num>  skip lines from the input file
         -t<num>  TAB indent size (in character positions, default=8)
         -v<num>  verbosity level; 0=quiet, 1=normal, 2=verbose (default=1)
         -w<num>  disable a specific warning by its number
         -X<num>  abstract machine size limit in bytes
         -XD<num> abstract machine data/stack size limit in bytes
         -\       use '\' for escape characters
         -^       use '^' for escape characters
         -;[+/-]  require a semicolon to end each statement (default=+)
         -([+/-]  require parantheses for function invocation (default=+)
         sym=val  define constant "sym" with value "val"
         sym=     define constant "sym" with value 0

Options may start with a dash or a slash; the options "-d0" and "/d0" are
equivalent.

Options with a value may optionally separate the value from the option letter
with a colon (":") or an equal sign ("="). That is, the options "-d0", "-d=0"
and "-d:0" are all equivalent.

23
ShowRoom (pawn) / Re: JiMX Begginer Script [ Updated ] [ 2014 ]
« on: March 17, 2014, 12:08:59 pm »
Give me another link.
that link was not working!!!!!!!!!!!!!!!!!!!!!!1

24
mIRC/pawn Scripting / Re: Plese help!!!
« on: March 17, 2014, 12:03:41 pm »
My compiler made many errors

25
mIRC/pawn Scripting / Please help!!!!!!!!!!!
« on: March 17, 2014, 11:48:06 am »
 Please help
My Problem









               F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(100) : warning 235: public function lacks forward declaration (symbol "OnPlayerVersion")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(106) : warning 235: public function lacks forward declaration (symbol "OnPlayerConnect")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(173) : warning 235: public function lacks forward declaration (symbol "OnPlayerDisconnect")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(188) : warning 235: public function lacks forward declaration (symbol "OnPickedUp")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(211) : warning 235: public function lacks forward declaration (symbol "OnPlayerSpawn")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(235) : warning 235: public function lacks forward declaration (symbol "OnPlayerDeath")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(301) : warning 235: public function lacks forward declaration (symbol "OnPlayerRequestClass")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(310) : warning 235: public function lacks forward declaration (symbol "OnGameModeInit")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(319) : error 029: invalid expression, assumed zero
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(319) : error 001: expected token: ",", but found ";"
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(346) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(348) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(353) : warning 235: public function lacks forward declaration (symbol "OnPlayerCommandText")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(362) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(367) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(368) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(387) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(392) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(402) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(452) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(584) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(587) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(591) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(702) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(909) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(924) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(943) : warning 202: number of arguments does not match definition
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1030) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1418) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1427) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1446) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1735) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1743) : warning 202: number of arguments does not match definition
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1759) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1890) : warning 235: public function lacks forward declaration (symbol "OnPlayerText")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1905) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1981) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(1983) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2021) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2082) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2084) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2123) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2185) : error 017: undefined symbol "Rohanaj60"
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2186) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2220) : error 017: undefined symbol "COLOR_BLACK"
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2221) : error 017: undefined symbol "COLOR_BALCK"
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2238) : error 017: undefined symbol "RemovePlayerMarker"
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2245) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2261) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2278) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2279) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2282) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2312) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2325) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2332) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2353) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2433) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2449) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2451) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2467) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2539) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2622) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2625) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2670) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2674) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2714) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2746) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2789) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2791) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2814) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2833) : warning 235: public function lacks forward declaration (symbol "FindPlayerIDFromString")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2837) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2848) : warning 235: public function lacks forward declaration (symbol "FindPlayerorAccount")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2852) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2866) : warning 235: public function lacks forward declaration (symbol "FindAccount")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(2876) : warning 235: public function lacks forward declaration (symbol "LoadSkins")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3041) : warning 235: public function lacks forward declaration (symbol "InitWepList")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3109) : warning 235: public function lacks forward declaration (symbol "FindWepIDFromString")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3115) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3359) : warning 235: public function lacks forward declaration (symbol "areas")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3583) : error 090: public functions may not return arrays (symbol "areas")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3595) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3612) : warning 235: public function lacks forward declaration (symbol "GetPlayerVersion")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3617) : warning 235: public function lacks forward declaration (symbol "GetPlayerSkinID")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3624) : warning 235: public function lacks forward declaration (symbol "GetPlayerSkinName")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3628) : error 090: public functions may not return arrays (symbol "GetPlayerSkinName")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3631) : warning 235: public function lacks forward declaration (symbol "location")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3635) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3640) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3649) : warning 235: public function lacks forward declaration (symbol "GetPlayerLocation")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3659) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3665) : error 090: public functions may not return arrays (symbol "GetPlayerLocation")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3687) : warning 235: public function lacks forward declaration (symbol "CompariseIp")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3708) : warning 235: public function lacks forward declaration (symbol "UpDateFile")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3714) : warning 235: public function lacks forward declaration (symbol "GetLastUsedIP")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3718) : error 090: public functions may not return arrays (symbol "GetLastUsedIP")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3721) : warning 235: public function lacks forward declaration (symbol "GetVehicleOwner")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3726) : warning 235: public function lacks forward declaration (symbol "GetVehicleShare")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3731) : warning 235: public function lacks forward declaration (symbol "GetVehiclePrice")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3736) : warning 235: public function lacks forward declaration (symbol "GetVehicleCost")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3741) : warning 235: public function lacks forward declaration (symbol "IsVehicleOwnedShared")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3746) : warning 235: public function lacks forward declaration (symbol "IsPropertyOwnedShared")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3751) : warning 235: public function lacks forward declaration (symbol "IsVehicleForSale")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3756) : warning 235: public function lacks forward declaration (symbol "IsVehicleOwner")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3761) : warning 235: public function lacks forward declaration (symbol "IsPropertyForSale")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3766) : warning 235: public function lacks forward declaration (symbol "PlayerPropDistance")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3769) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3771) : warning 217: loose indentation
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3774) : warning 235: public function lacks forward declaration (symbol "IsPropertyOwner")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3779) : warning 235: public function lacks forward declaration (symbol "IsVehicleShared")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3784) : warning 235: public function lacks forward declaration (symbol "GetPropertyOwner")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3789) : warning 235: public function lacks forward declaration (symbol "GetPropertyShare")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3794) : warning 235: public function lacks forward declaration (symbol "GetPropertyCost")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3799) : warning 235: public function lacks forward declaration (symbol "GetPropertyName")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3804) : warning 235: public function lacks forward declaration (symbol "IsPropertyShared")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3809) : warning 235: public function lacks forward declaration (symbol "IsLocationExist")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3816) : warning 235: public function lacks forward declaration (symbol "IsPropertyExist")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3821) : warning 235: public function lacks forward declaration (symbol "IsVehicleExist")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3826) : warning 235: public function lacks forward declaration (symbol "GetPlayerHandCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3834) : warning 235: public function lacks forward declaration (symbol "GetPlayerBankCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3842) : warning 235: public function lacks forward declaration (symbol "DecPlayerHandCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3850) : warning 235: public function lacks forward declaration (symbol "IncPlayerHandCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3858) : warning 235: public function lacks forward declaration (symbol "IncPlayerDeaths")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3865) : warning 235: public function lacks forward declaration (symbol "IncPlayerKills")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3872) : warning 235: public function lacks forward declaration (symbol "DecPlayerBankCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3879) : warning 235: public function lacks forward declaration (symbol "IncPlayerBankCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3886) : warning 235: public function lacks forward declaration (symbol "IncPlayerWarns")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3892) : warning 235: public function lacks forward declaration (symbol "DecPlayerWarns")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3898) : warning 235: public function lacks forward declaration (symbol "GetPlayerWarns")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3903) : warning 235: public function lacks forward declaration (symbol "SetPlayerBankCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3909) : warning 235: public function lacks forward declaration (symbol "SetPlayerHandCash")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3915) : warning 235: public function lacks forward declaration (symbol "GetPlayerAdminLevel")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3923) : warning 235: public function lacks forward declaration (symbol "DisarmPlayer")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3928) : warning 235: public function lacks forward declaration (symbol "PercentBar")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3942) : error 090: public functions may not return arrays (symbol "PercentBar")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3945) : warning 235: public function lacks forward declaration (symbol "StatusTag")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3958) : error 090: public functions may not return arrays (symbol "StatusTag")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3961) : warning 235: public function lacks forward declaration (symbol "CountDowns")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3971) : warning 235: public function lacks forward declaration (symbol "FinalCount")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3976) : warning 235: public function lacks forward declaration (symbol "SendClientMessagef")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3983) : warning 235: public function lacks forward declaration (symbol "GetServerConfig")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3987) : error 090: public functions may not return arrays (symbol "GetServerConfig")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(3990) : warning 235: public function lacks forward declaration (symbol "SetServerConfiguration")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4013) : warning 202: number of arguments does not match definition
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4013) : warning 204: symbol is assigned a value that is never used: "iInt2"
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4013 -- 4017) : warning 235: public function lacks forward declaration (symbol "LoadSpawnCharacters")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4038) : warning 235: public function lacks forward declaration (symbol "LoadPickups")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4052) : warning 202: number of arguments does not match definition
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4081) : warning 235: public function lacks forward declaration (symbol "LoadVehicles")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4122) : warning 235: public function lacks forward declaration (symbol "AdminChat")
F:\Rohan\GUPS1.16Final\GUPS 1.16\gamemodes\GUPS1.16.pwn(4252) : warning 203: symbol is never used: "szGameAuthorName"
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase


13 Errors.

Please please please Help!!!!!!!!!!!!!!!!!!!!!

26
mIRC/pawn Scripting / Re: Should I?
« on: March 16, 2014, 01:49:28 pm »
I want pwn editor.

27
ShowRoom (pawn) / Re: [R2] Cool Vcmp Server Script
« on: March 16, 2014, 11:16:23 am »
From which Application Do you Edit Rocky...

Pages: 1 [2]