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

Pages: 1 ... 6 7 [8] 9 10
106
mIRC/pawn Scripting / Re: Cannot read file: a_vcmp
« on: January 07, 2012, 09:10:46 pm »
Its a GM script pro, Try removing your last script.

107
mIRC/pawn Scripting / Re: i need some cmd for gups
« on: January 07, 2012, 09:09:35 pm »
I have notice that Leeter were right cuz YOU ONLY WANNA COPY AND PASTE YOU DONT WANNA LEARN YOU ONLY WANT TO COPY AND PASTE

108
mIRC/pawn Scripting / Re: cmd problem
« on: January 05, 2012, 04:42:25 pm »
when i picked it up its doest show me nothing  :'( :-[ :-[ :-[

109
mIRC/pawn Scripting / Re: Please Help Me!
« on: January 05, 2012, 02:20:04 pm »
You join us before now we are in the hight lvl man 14/20   , 10/20 better than Argo we have:

Fuel System
Skin System (on day, buy a skin and always you spawn your skin will be putted)
Wep saved System (You can save your weps)

And much more but i cant tell you xD you need to test it or go to see your little brother playing

110
mIRC/pawn Scripting / Re: I need one more help!
« on: January 05, 2012, 02:16:51 pm »
Correct!!      ;D

111
mIRC/pawn Scripting / Re: Please Help Me!
« on: January 05, 2012, 04:42:31 am »
PD: Your little brother is my young admin xD.... lvl 7-8

112
mIRC/pawn Scripting / Re: Please Help Me!
« on: January 05, 2012, 04:40:21 am »
:O sorry man i really sorry i thought you were talking about me...

LAST POST DELETED

113
mIRC/pawn Scripting / Re: Please Help Me!
« on: January 04, 2012, 07:17:31 pm »
MOTHER FUCKER NOOBISH

See again and talking shit if you dont know how to  read.

I only putted By dilson alone y kicked.

But in other sides i putto by Dilson and Shadow But i will delete it fucking noob

114
mIRC/pawn Scripting / Re: Please Help Me!
« on: January 04, 2012, 05:22:18 pm »
Well man this i made for you!

  ;D

http://www.megaupload.com/?d=ZLB4MMPA

115
mIRC/pawn Scripting / Re: GUPS PROB AGAIN
« on: January 04, 2012, 04:17:00 pm »
You can treat to make it and if that dont work you POST it here

116
mIRC/pawn Scripting / Re: cmd problem
« on: January 04, 2012, 04:10:09 pm »
I looked at that for about 2 seconds and it's pretty obvious he's missed a { on each of the if statements.

Code: [Select]
public OnPickedUp(pickupid, playerid)
{
if( pickupid == 407)
{
SendClientMessage(playerid, COLOR_YELLOW, "Esto es un Pickup ID 407" );
return 1;
}
   if( pickupid == 406)   // This is the 256 Line
{
SendClientMessage(playerid, COLOR_YELLOW, "Esto es un Pickup ID 406" );
        }
  return 1; // And you are lose in this
}

118
mIRC/pawn Scripting / Re: cmd problem
« on: January 04, 2012, 01:14:58 am »
I dont know why this lines Get me into error:

[pawn]public OnPickedUp(pickupid, playerid)
{
   if( pickupid == 407)
   SendClientMessage(playerid, COLOR_YELLOW, "Esto es un Pickup ID 407" );
   return 1;
   }
   if( pickupid == 406)   // This is the 256 Line
   SendClientMessage(playerid, COLOR_YELLOW, "Esto es un Pickup ID 406" );
   }[/pawn]

ERROR:

[pawn](256) : error 010: invalid function or declaration[/pawn]

119
mIRC/pawn Scripting / Re: My Fatal Error x_X
« on: January 01, 2012, 08:34:33 pm »
Try this One:

[pawn]else if (strcmp(cmd, "givemoney", true) == 0) {
   if(IsLogged[playerid] == 0) SendClientMessage(playerid,NOTACCES,"Need to login first !");
      else if(PlayerInfo[playerid][AdminLevel] < 5) SendClientMessage(playerid,NOTACCES,"Not have permission to use this command!(AdminLevel 5+)");
      else if(IsPlayerAdmin(playerid) || PlayerInfo[playerid][AdminLevel] >= 5)
       {
      new string[256], plr, money[256];
      snick = strtok(cmdtext, idx), plr = FindPlayerIDFromString(snick), money = strtok(cmdtext, idx);

      if (!strlen(tmp)) SendClientMessage(playerid,COLOR_RED,"USAGE: /c givemoney [Nick/ID] [Amount]");
      else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Unknown Player");
      else {
         format(string,sizeof(string),"Admin %s Give to [ %s ] money [ %d ]",gPlayers[playerid],gPlayers[plr],strval(money));
         SendClientMessageToAll(COLOR_GREEN,string);
         IncPlayerHandCash(plr,strval(money));
      }
      }else{
      SendClientMessage(playerid,NOTACCES,"***Not have permission to use this command!");
      }
      return 1;
   }[/pawn]

120
mIRC/pawn Scripting / Re: My Fatal Error x_X
« on: January 01, 2012, 08:30:48 pm »
You may check if you have this function:

[pawn]public FindPlayerIDFromString(string[])
{// for determining player id from a string  -bakasan
// fixed version
   new player = INACTIVE_PLAYER_ID;
   new p = 0;
   if ((strlen(string) <= 2) && (isnumeric(string) == 1)) {
      if (IsPlayerConnected(strval(string))) return strval(string);
      else return INACTIVE_PLAYER_ID;
   }
   while (p < MAX_PLAYERS) { if (strfind(gPlayers[p],string,true) != -1) { player=p;break; } p++; }
   if (player == INACTIVE_PLAYER_ID) {// string didnt match so check if it can be an id
      if ((strlen(string) > 2) || (isnumeric(string) == 0)) { return INACTIVE_PLAYER_ID; }
      player = strval(string);// string is numeric and not more than 2 digits
   }
   if (!IsPlayerConnected(player)) { return INACTIVE_PLAYER_ID; }
   return player;// valid id found
}[/pawn]

Pages: 1 ... 6 7 [8] 9 10