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 - Erik

Pages: [1] 2
1
mIRC/pawn Scripting / Re: Fix please
« on: May 20, 2014, 10:38:24 pm »
hmmm i think its no need

[pawn]}
   else SendClientMessage( playerid, COLOR_GREEN, "Error: Unknown Command." );
   return 0;
}[/pawn]

for me now 0 errors :)

2
mIRC/pawn Scripting / Re: Fix please
« on: May 20, 2014, 10:25:54 pm »
Maybe, [pawn]
   else { SendClientMessage( playerid, COLOR_GREEN, "Error: Unknown Command." ); }[/pawn]
?

same errors :(

3
mIRC/pawn Scripting / Fix please
« on: May 20, 2014, 06:06:57 pm »
[pawn]}
   return 1;
   }
   else SendClientMessage( playerid, COLOR_GREEN, "Error: Unknown Command." );
   return 0;
}
[/pawn]

Code: [Select]
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(2660) : error 010: invalid function or declaration
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(2661) : error 010: invalid function or declaration
Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


2 Errors.

4
mIRC/pawn Scripting / Re: i need commands pawno...
« on: May 05, 2014, 03:03:21 pm »
OnPlayerCommandText

Code: [Select]
else if(strcmp(cmd,"mute",true) == 0)
{
 
new plr;
tmp = strtok(cmdtext, idx), plr = FindPlayerIDFromString(tmp);
if ( !IsLoggedIn( playerid ) ) SendClientMessage( playerid, COLOR_RED, "-> Please login!." );
      {
        if (!strlen(tmp)) SendClientMessage(playerid,COLOR_RED,"");
  else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Error: Unknown player");
        else if ( !IsAuthorized( playerid, "mute" ) ) SendClientMessage( playerid, COLOR_RED, "-> Not have access to the command! :P!" );
        else if ( !strlen( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "USAGE: /c mute [Nick/ID]" );
else {
if(PlayerInfo[plr][Muted] == 0)
{
PlayerInfo[plr][Muted] = 1;
format(str,sizeof(str),"ADMIN %s Muted %s for a long time...",gPlayers[playerid],gPlayers[plr]);
SendClientMessageToAll(COLOR_WHITE,str);
SendClientMessage(plr,COLOR_RED,"Stop talking or you will be kicked...");
}
else
{
SendClientMessage(playerid,COLOR_RED,"You cannot mute him 2 times..");
}
}
}
return 1;
}


OnPlayerText

   
Code: [Select]
if(PlayerInfo[playerid][Muted] == 1)
{
    new str[256];
format(str,sizeof(str),"Auto-Kick Player:[ %s ] Reason:[ Mute Evader ]",gPlayers[playerid]);
SendClientMessageToAll(COLOR_Yellow,str);
Kick(playerid);
  return 0;
}

On TOP!

Code: [Select]
enum pInfo
{
Password[ MAX_PASS_SIZE +1 ],
Logged,
Level,
Skinid,
Stats,
Muted


5
Nice Server... I like your scripts :)

6
Tutorials / Re: How to configure your server
« on: April 22, 2014, 07:02:14 pm »
nice.. Thanks :)

7
mIRC/pawn Scripting / Re: Plese help!!!
« on: April 06, 2014, 09:05:25 pm »
Thanks.

TOPIC LOCKED

8
mIRC/pawn Scripting / Re: Plese help
« on: April 05, 2014, 07:09:35 pm »
Code: [Select]
C:\Documents and Settings\erik\Asztal\VC-MP Server\gamemodes\Test.pwn(154) : error 017: undefined symbol "IsPlayerRegistered"
C:\Documents and Settings\erik\Asztal\VC-MP Server\gamemodes\Test.pwn(159) : error 017: undefined symbol "IsValidNick"
C:\Documents and Settings\erik\Asztal\VC-MP Server\gamemodes\Test.pwn(166) : error 017: undefined symbol "file"
C:\Documents and Settings\erik\Asztal\VC-MP Server\gamemodes\Test.pwn(166) : error 017: undefined symbol "file"
C:\Documents and Settings\erik\Asztal\VC-MP Server\gamemodes\Test.pwn(166) : error 029: invalid expression, assumed zero
C:\Documents and Settings\erik\Asztal\VC-MP Server\gamemodes\Test.pwn(166) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


6 Errors.

same errors

9
mIRC/pawn Scripting / Re: Fix server
« on: April 05, 2014, 06:53:08 pm »
Bug fixed.
Bug: Countdown(playerid);

TOPIC LOCKED

10
mIRC/pawn Scripting / Fix server
« on: April 05, 2014, 04:44:15 pm »
I make a server but not work...
I click in vcmp-svr.exe and in this appear:

Code: [Select]
VC:MP Dedicated Server
 ----------------------
 v0.3r2, ©2005-2010 VC:MP Team

Executing Server Config...
C:\Documents and Settings\erik\Asztal\VC-MP Server\scriptfiles\

  Filter Scripts
  ---------------
  Loaded 0 filter scripts.

Script[gamemodes/Test.amx]: Run time error 19: "File or function is not found"
RCON: Unable to start Remote Console server.
--- Server Shutting Down.

How to fix it plese..

11
mIRC/pawn Scripting / Re: Plese help
« on: April 05, 2014, 02:42:29 pm »
pawn:
[pawn]C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(301) : error 017: undefined symbol "IsPlayerRegistered"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(306) : error 017: undefined symbol "IsValidNick"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : error 017: undefined symbol "file"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : error 017: undefined symbol "file"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : error 029: invalid expression, assumed zero
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.0.3367         Copyright (c) 1997-2005, ITB CompuPhase


6 Errors.
[/pawn]

code:
Code: [Select]
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(301) : error 017: undefined symbol "IsPlayerRegistered"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(306) : error 017: undefined symbol "IsValidNick"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : error 017: undefined symbol "file"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : error 017: undefined symbol "file"
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : error 029: invalid expression, assumed zero
C:\Documents and Settings\erik\Asztal\VC-MP server\gamemodes\Test.pwn(313) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.0.3367 Copyright (c) 1997-2005, ITB CompuPhase


6 Errors.

How to fix errors?



12
mIRC/pawn Scripting / Plese help
« on: April 05, 2014, 10:16:35 am »
I need a good and working  login and register system...
Plses help.
Thanks

13
Support / Re: Plese help!!!
« on: March 15, 2014, 05:29:06 pm »
THANKS.

14
Support / Re: Plese help!!!
« on: March 15, 2014, 04:20:54 pm »
how to?

15
Support / Plese help!!!
« on: March 13, 2014, 08:37:52 pm »
Plese help!
Need help in my server...
I need a .amx file for my server but i don't know how to make...
Plese help me.

Pages: [1] 2