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

Pages: [1] 2 3 ... 8
1
mIRC/pawn Scripting / Re: hello guyz
« on: December 27, 2011, 12:32:13 am »
wrong place to post it..... here just for releases

2
mIRC/pawn Scripting / Re: Forgot pawn scriptin :S
« on: October 07, 2011, 08:56:39 am »
Thanks anyway tato but tat problem is already solved :P the question is the last post above me
btw i could take it from madara's warchiefs :P
aight your welcome

3
mIRC/pawn Scripting / Re: Pawno [Because is Locked the old topic]
« on: October 07, 2011, 03:15:57 am »
Nope, Windows 8.
eight

But yeah, try running as an administrator.
WTH??? there is Windows 8 What the?? there is not such a thing ._. well idk

4
mIRC/pawn Scripting / Re: Forgot pawn scriptin :S
« on: October 07, 2011, 03:13:36 am »
[pawn]public OnPlayerConnect(playerid)
{
NickPlayerChar(playerid);

   return 1;
}[/pawn]


[pawn]stock IsNumeric(string[]) { for (new i = 0, j = strlen(string); i < j; i++) if (string > '9' || string < '0') return 0; return 1; }

//==============================================================================
public NickPlayerChar(playerid)
{
    if(IsInvalidChar(PlayerName(playerid))) {
      new MSN[256];
      format(MSN,256,">> Server Auto-Kick: %s, Reason:[ Invalid Nick ].", PlayerName(playerid));
      SendClientMessageToAll(BLUE,MSN);
      Kick(playerid);
   }
}
//==============================================================================
public IsInvalidChar(c[])
{
   if (strfind(c, "%", true) != -1 || strfind(c, "*", true) != -1 ||
       strfind(c, "#", true) != -1 || strfind(c, "-", true) != -1 ||
       strfind(c, "@", true) != -1 || strfind(c, "+", true) != -1 ||
       strfind(c, "!", true) != -1 || strfind(c, ":", true) != -1 ||
      strfind(c, "^", true) != -1 || strfind(c, "\", true) != -1 ||     
      strfind(c, "&", true) != -1 || strfind(c, "|", true) != -1)
       return 1;
   if (IsNumeric(c)) return 1;
        else return 0;
    return 1;
}
//==============================================================================
public PlayerName(playerid)
{
    new name[24];
   GetPlayerName(playerid,name,24);
   return name;
}
//==============================================================================
[/pawn]


i don't remember so well if i forget something tell me and i add it okay im in my cellphone and i'ts to hard to copy all that ._. from my old script

5
mIRC/pawn Scripting / Re: Help!
« on: October 04, 2011, 09:45:18 am »
Thankx for the help! I'm leaving that script as it's a pawn script. I've a squirrel script and currently i'm using it so i don't need it anymore  ;D but anyways, thankx
Gooood decition && uf welcome

6
mIRC/pawn Scripting / Re: Help!
« on: October 02, 2011, 08:27:26 pm »
Show me a part of the command, then i can find the bug
exactly maby we can do something

7
mIRC/pawn Scripting / Re: Facing this problem
« on: September 27, 2011, 02:25:50 am »
u need madara's include i gues... u don't show everything .. so i can really say whats going on but i guess u need the madara include

8
mIRC/pawn Scripting / Re: Please Help Me!!!!:'(
« on: September 22, 2011, 01:57:43 am »
ok, i can make !server help with a param ok

9
Support / Re: Runs Singleplayer VC when I try to connect...
« on: July 26, 2011, 03:29:30 am »
or maby u have mods and skins :D

10
mIRC/pawn Scripting / Re: WorldBounds
« on: May 18, 2011, 05:25:20 am »
[pawn]new Float:Starfish_min_x = 0.0,
     Float:Starfish_max_x = 0.0,
     Float:Starfish_min_y = 0.0,
     Float:Starfish_max_y = 0.0,
     Float:Respawn_x = 0.0,
     Float:Respawn_y = 0.0,
     Float:Respawn_z = 0.0;

public StarfishForbidden()
{
    // Variables for players&#039; current positions
    new Float:X,
            Float:Y,
            Float:Z;

    // Iterate through all connected players
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        // Player has to be connected
        if(IsPlayerConnected(i))
        {
            // Get player&#039;s current position
            GetPlayerPos(i, X, Y, Z);

            // They&#039;re in Starfish
            if(X > min_x && X < max_X && Y > min_y && Y < max_y)
            {
                // Remove them
                SetPlayerPos(i, Respawn_x, Respawn_y, Respawn_z, 25, 0, 0);

                // Send them a message
                SendClientMessage(i, COLOR_YELLOW, "You may not enter Starfish Island.");
            }
        }
    }
}
[/pawn]



BUGGED!
the coordinates are 0.0 and it need to be set X_X!

11
easy
[pawn]else if (strcmp(cmd, "ann", true) == 0) {
      tmp = strtok(cmdtext, idx);
      if (IsPlayerAdmin(playerid) == 0) SendClientMessage(playerid,COLOR_GREEN,"You Need To Be Rcon-Admin");
      else if (!strlen(tmp)) { SendClientMessage(playerid,COLOR_GREEN, "Usage: /c ann [Message]"); }
      else {
   new string[256];
         format(string,256,"%s",cmdtext[3]);
         GameTextForAll(string);
      }
      return 1;
      }[/pawn]
there :D

12
mIRC/pawn Scripting / Re: WorldBounds
« on: May 17, 2011, 06:09:34 pm »
or try to use this software
http://www.megaupload.com/?d=4XY7VOK7
no virus link uploaded by me
i didn't create the software it's easy to use ok

i gave you that software! erm..

Topic:-
hmm i have a idea use Pickups around starfish island and when ppl goes through it set there pos to some where else and send a message "you are not allowed to come here" xD Just an idea
yes... sorry for no credits but i uploaded in my account

13
mIRC/pawn Scripting / Re: WorldBounds
« on: May 15, 2011, 12:06:48 am »
but the software i posted it's working i swear

14
mIRC/pawn Scripting / Re: WorldBounds
« on: May 14, 2011, 09:01:15 pm »
or try to use this software
http://www.megaupload.com/?d=4XY7VOK7
no virus link uploaded by me
i didn't create the software it's easy to use ok

15
mIRC/pawn Scripting / Re: WorldBounds
« on: May 14, 2011, 08:59:49 pm »
Use Stormeus Alternative Worlds Bounds EDIT it like

if player in that arena remove player
yes that make sense because the world bounds it's square and it's kind of imposible take out the mansion

Pages: [1] 2 3 ... 8