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

Pages: [1] 2
2
How to put a small house icon to display real estate information?


How should i do?

3
mIRC/pawn Scripting / Re: I need help with kick health hack
« on: September 20, 2013, 07:42:37 am »
This is public
[pawn]public healthkick(playerid)
{
if (HP >= 99)
   Kick( playerid );
   return 1;
}
[/pawn]

OnPlayerConnect i SetPlayerHealth(playerid,98); OnPlayerSpawn i SetPlayerHealth(playerid,98); OnGameModeInit i SetTimer("healthkick",100,1);

After I compile without error

Is this useful?

It may be useful, but u have admitted a mistake. Remove the parameter (I mean playerid) in your public(healthkick I mean), because any variable is set to 0 by definition (for example, "new zero" 's value is 0 after "zero" declared. So this will only check if player with ID 0 is hacker (read note about SetTimer).

Well, if you want to check every player on availability of hacks, you should make a cycle.
Clean the code in ur public and type this:
[pawn]new p; //we declared a new variable called "p"
[/pawn]
Now let's start a cycle. Type this below:
[pawn]for(p = 0; p < MAX_PLAYERS; p++)//the cycle declared, p = 0, p < MAX_PLAYERS, and p + 1
{
new Float:ph; // declaring a new Float called "ph".
GetPlayerHealth(p, ph); // getting p's health (p is now player, bcuz we wanted this, and ph is float to store player's health we got.
if(ph >= 99)//the condition checks if the float "ph"'s value is 99 more
{
    SendClientMessage(p, 0xFF0000AA, "Go use ur shitty healhack on another server, you, little dickhead"); // we ask the "p" to remove hacks
    Kick(p); // we kick Pe
}
}
return 1;
}[/pawn]

lemme check if it works, I will tell u.

Oh, ye. set the interval of SetTimer to 1000, cuz 100 will eat ur memory
thank you very much!!!!!!! ;)

4
mIRC/pawn Scripting / Re: I need help with kick health hack
« on: September 20, 2013, 05:44:47 am »
thank.you very much!! ;D

5
mIRC/pawn Scripting / Re: How to do speedometer.?
« on: September 19, 2013, 03:34:18 pm »
I was searching on google for Madaras' release, but I think I found one made by Big[H].
(an edited version of Madara' Speedometer if Im not wrong)

Here it is: http://www.mediafire.com/download/bhwemsra96wl1th/Speedometer.pwn

Do not forget to add credits: Madara, Big[H]

EDIT: I found this line in the script:
Code: [Select]
SendClientMessage(playerid,0x33AA33AA,"Vital Speed Meter by BIG[H](VCMP) and Licznik (Samp)");thank you!!!! :)
DO NOT CHANGE / REMOVE THE CREDITS !

6
mIRC/pawn Scripting / I need help with kick health hack
« on: August 24, 2013, 07:27:59 am »
This is public
[pawn]public healthkick(playerid)
{
if (HP >= 99)
   Kick( playerid );
   return 1;
}
[/pawn]

OnPlayerConnect i SetPlayerHealth(playerid,98); OnPlayerSpawn i SetPlayerHealth(playerid,98); OnGameModeInit i SetTimer("healthkick",100,1);

After I compile without error

Is this useful?


7
mIRC/pawn Scripting / How to do speedometer.?
« on: August 24, 2013, 06:56:02 am »
How to do speedometer.?Who can give me the code?

8
mIRC/pawn Scripting / Re: How to prevent the lock blood
« on: August 22, 2013, 05:48:30 am »
So y dont u ban them all then?

 Too much, can't kill all

9
mIRC/pawn Scripting / How to prevent the lock blood
« on: August 21, 2013, 04:03:31 am »
Oh my god :o my server have to many hacker!

10
mIRC/pawn Scripting / How to join the Chinese tips in the server?
« on: August 12, 2013, 12:08:06 pm »
How to join the Chinese tips in the server?This will enable people to see more clearly


11
mIRC/pawn Scripting / Re: How to add passenger to my server?
« on: August 11, 2013, 05:33:08 pm »
VCA allows us to add BOT in the server?

When will be released?

 :'(   

12
mIRC/pawn Scripting / How to add Radar Icons?
« on: August 11, 2013, 11:16:16 am »
it can make we can see the icon on rader ,like telephone,clothes shop,,,,how to do this?
 :)

13
mIRC/pawn Scripting / How to add passenger to my server?
« on: August 11, 2013, 05:23:39 am »
Can be transplanted from SAMP?  I think it's possible! because there have someone were do this! i need help

14
mIRC/pawn Scripting / a problem
« on: July 17, 2013, 11:13:26 am »
alex.pwn(223) : error 032: array index out of bounds (variable "gPlayers")

Code: [Select]
         else if( AntiNick ( gPlayers[ playerid ] ) )

What variable should i use?

15
mIRC/pawn Scripting / Re: How to deal with these problem?
« on: July 17, 2013, 10:56:44 am »
0_o somebody is using my AFKing mode ::) That's awesome feeling


hey hey..

Pages: [1] 2