Vice City Multiplayer

VC:MP => mIRC/pawn Scripting => Topic started by: BIG[H] on April 01, 2011, 09:30:30 AM

Title: Pawn SUX!!
Post by: BIG[H] on April 01, 2011, 09:30:30 AM
MAN Pawn sucks i has a lot of bugs and Dam shits warnings and crashes and Worse things that i won't worte it down
I announce that no more Help / Script from me cuz i left Pawn Scirpting  and i am scripting squirrel Its BEST its is BEST and its BEST it has a lot of functions more than pawn it has onPLayerFall onPlayerHealthChange etc and BEST of BEST it can change weather time can connect mirc .. So no pawn for me >_>
Title: Re: Pawno SUX!!
Post by: cycu on April 01, 2011, 11:55:25 AM
Quote from: BIG[H] on April 01, 2011, 09:30:30 AM
MAN Pawn sucks i has a lot of bugs and Dam shits warnings and crashes and Worse things that i won't worte it down
I announce that no more Help / Script from me cuz i left Pawn Scirpting  and i am scripting squirrel Its BEST its is BEST and its BEST it has a lot of functions more than pawn it has onPLayerFall onPlayerHealthChange etc and BEST of BEST it can change weather time can connect mirc .. So no pawn for me >_>

Wow OnPlayerFall, really useful function, however OnPlayerHealthChange is scriptable in pawn :)
On other hand i don't get the point of creating topic about you leaving pawn scripting scene, isn't it better just to say "I'm not scripting pawn anymore" when someone ask for help ?

Bye.
Title: Re: Pawno SUX!!
Post by: Devian on April 01, 2011, 02:28:33 PM
JAJAJA!

Pwnt!
/me runs off
Title: Re: Pawno SUX!!
Post by: Aldo on April 01, 2011, 04:27:27 PM
1) Pawno is a application not a scripting language

2) Pawn sucks because you don't know how to script?

3)

Quote from: cycu on April 01, 2011, 11:55:25 AM
Wow OnPlayerFall, really useful function, however OnPlayerHealthChange is scriptable in pawn :)
On other hand i don't get the point of creating topic about you leaving pawn scripting scene, isn't it better just to say "I'm not scripting pawn anymore" when someone ask for help ?

Bye.
Title: Re: Pawn SUX!!
Post by: Skirmant on April 01, 2011, 05:13:48 PM
Quote from: BIG[H] on April 01, 2011, 09:30:30 AM
MAN Pawn sucks i has a lot of bugs and Dam shits warnings and crashes and Worse things that i won't worte it down
I announce that no more Help / Script from me cuz i left Pawn Scirpting  and i am scripting squirrel Its BEST its is BEST and its BEST it has a lot of functions more than pawn it has onPLayerFall onPlayerHealthChange etc and BEST of BEST it can change weather time can connect mirc .. So no pawn for me >_>

You can connect the mIRC dll to any VCMP server. Weather it be Pawn, Squirrle or even mIRC based :p Although I agree with you about pawn based server's lack of functionality. BUT! Squirrel lacks a couple of functions that are very important to me. For example, SetWeaponDamage and SetPlayerTeam. By the way. Falling detection is scriptable... Bitch.
Title: Re: Pawn SUX!!
Post by: BIG[H] on April 01, 2011, 06:32:51 PM
Oh yea Make Falling Dection if you dare!
Title: Re: Pawn SUX!!
Post by: Madara on April 01, 2011, 07:04:21 PM
I use squirrel & Pawn, a pawn that will not let you use the SAMP, moreover, to leave a leguaje, let part of learning.
Although squirrel used to create scripts for a server vcmp, squirrel is not official yet in this forum. Only mIRC / Pawn
Title: Re: Pawn SUX!!
Post by: Charleyutton on April 01, 2011, 07:12:24 PM
Sorry Big[H] you seem to be under the illusion that anyone cares...

But yeah squirrel does seem to be the better option, in almost every sense.
Title: Re: Pawn SUX!!
Post by: Skirmant on April 01, 2011, 07:24:16 PM
mIRC (With VRockers DLL) :


on *:SIGNAL:vcmp.player.move:{
 ; $1 = ServerID, $2 = PlayerID, $3 = OldX, $4 = OldY, $5 = OldZ, $6 = NewX, $7 = NewY, $8 = NewZ

if  ($5 > $8) {
if ($calc($5 - $8) > 1) vcmp.msg $1 $2 You're fallin' motha f*cka.
}
}
 !.signal vcmp.move $1-
}  


Pawno:

Text version :p Make a timer that detects Z movement of every player at every 500 milliseconds or so, it's best to do this in a DLL for max speed. Make it store data into a 2d array. First dimention for player's id and the second one is for the old/new cord. Once the timer is done, use the same logic as I used in mIRC. Simply compare the older Z location with the newer one. That's pretty much it.
Title: Re: Pawn SUX!!
Post by: Madara on April 01, 2011, 07:43:26 PM
Quote from: Skirmant on April 01, 2011, 07:24:16 PM
mIRC (With VRockers DLL) :


on *:SIGNAL:vcmp.player.move:{
 ; $1 = ServerID, $2 = PlayerID, $3 = OldX, $4 = OldY, $5 = OldZ, $6 = NewX, $7 = NewY, $8 = NewZ

if  ($5 > $8) {
if ($calc($5 - $8) > 1) vcmp.msg $1 $2 You're fallin' motha f*cka.
}
}
 !.signal vcmp.move $1-
}  


Pawno:

Text version :p Make a timer that detects Z movement of every player at every 500 milliseconds or so, it's best to do this in a DLL for max speed. Make it store data into a 2d array. First dimention for player's id and the second one is for the old/new cord. Once the timer is done, use the same logic as I used in mIRC. Simply compare the older Z location with the newer one. That's pretty much it.

Detects movement of the coordinate Z.
This could be used to detect this elevation as a player or not?
Title: Re: Pawn SUX!!
Post by: Skirmant on April 01, 2011, 07:58:10 PM
Quote from: Madara on April 01, 2011, 07:43:26 PM
Detects movement of the coordinate Z.
This could be used to detect this elevation as a player or not?

The coordinate Z is mathematically and physically known as the 3th dimensional coordinate which we all recognize as height. Vice City is no exception. So yeah. It can be used to detect if the player moves up or down. How can you not know this anyway  ???
Title: Re: Pawn SUX!!
Post by: Madara on April 01, 2011, 08:28:57 PM
Quote from: Skirmant on April 01, 2011, 07:58:10 PM
Quote from: Madara on April 01, 2011, 07:43:26 PM
Detects movement of the coordinate Z.
This could be used to detect this elevation as a player or not?

The coordinate Z is mathematically and physically known as the 3th dimensional coordinate which we all recognize as height. Vice City is no exception. So yeah. It can be used to detect if the player moves up or down. How can you not know this anyway  ???

mIRC do not know, but in pawn i know.
Title: Re: Pawn SUX!!
Post by: Charleyutton on April 02, 2011, 12:52:46 AM
I believe onPlayerFall actually detects whether the fall animation is being played, Skirmant. ie. when you get hit down by a shotgun or do /fall
Title: Re: Pawn SUX!!
Post by: tato on April 02, 2011, 02:08:36 AM
pretty cool :D
Title: Re: Pawn SUX!!
Post by: Skirmant on April 02, 2011, 03:52:29 PM
Quote from: Charleyutton on April 02, 2011, 12:52:46 AM
I believe onPlayerFall actually detects whether the fall animation is being played, Skirmant. ie. when you get hit down by a shotgun or do /fall

So it detects when a player has already fallen? Pff... Why didn't anyone tell me about that earlier?
Even in this case it can still be detectable if you fall from height.
Title: Re: Pawn SUX!!
Post by: tato on April 02, 2011, 06:19:38 PM
Quote from: Skirmant on April 02, 2011, 03:52:29 PM
Quote from: Charleyutton on April 02, 2011, 12:52:46 AM
I believe onPlayerFall actually detects whether the fall animation is being played, Skirmant. ie. when you get hit down by a shotgun or do /fall

So it detects when a player has already fallen? Pff... Why didn't anyone tell me about that earlier?
Even in this case it can still be detectable if you fall from height.
damn that's koooool!!!
Title: Re: Pawn SUX!!
Post by: BIG[H] on April 02, 2011, 08:23:25 PM
and You can Detect Jet pack Flying hack with it if player is falling more than 4  - 5 second AUTO BAN!!
Title: Re: Pawn SUX!!
Post by: tato on April 02, 2011, 08:26:06 PM
Quote from: BIG[H] on April 02, 2011, 08:23:25 PM
and You can Detect Jet pack Flying hack with it if player is falling more than 4  - 5 second AUTO BAN!!
wooow that's cool but i need to lern how to do it D:
Title: Re: Pawn SUX!!
Post by: [SUK]vivamexico on April 04, 2011, 03:48:15 PM
lol...
Title: Re: Pawn SUX!!
Post by: Robd on April 04, 2011, 05:18:27 PM
Hehe, admit it. Pawn functions suck but pawn scripters KICK ASS.
Title: Re: Pawn SUX!!
Post by: BIG[H] on April 04, 2011, 05:55:09 PM
QuoteHehe, admit it. Pawn functions suck but pawn scripters KICK ASS.
;) Teh Scirpters  :D