• Welcome to Vice City Multiplayer.
 
Menu

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.

Show posts Menu

Topics - Mex

#1
Public Beta / [Crash] 0x017E2480
October 30, 2007, 12:25:15 AM
Reproducible: Always
What you were doing at the time of this crash: I was a Cop at the Little Havana Police Station.  I typed a command I created in a script, which would then add 1 HP to me after 1 second. I then paused to see what would happen, then I crashed.  I tested this 3 times, and I crashed each time.
What you think caused the crash: Setting Health on a Player that is paused.
Crash Report:
Exception At Address: 0x017E2480

Registers:
EAX: 0x00000000   EBX: 0x0234A8C8   ECX: 0x00000000   EDX: 0x0234A8C8
ESI: 0x02B7077C   EDI: 0x00694D70   EBP: 0x02386718   ESP: 0x0012FD9C
EFLAGS: 0x00210202

Stack:
0x00694D70
0x02B7077C
0x02386718
0x0012FDBC
0x0234A8C8
0x00000000
0x0234A8C8
0x07220200
0x004D771E
0x00000000
0x00978AA8
0x00000000
0x0000001A
0x00000001
0x00000000
0x004A45CD
0x748146C8
0x00000001
0x004A5DA5
0x00000001
0x0234A8C8
0x748146C8
0x017E21C1
0x017E2326
0x0000001A
#2
mIRC/pawn Scripting / Are Addban / Subnetban possible?
August 26, 2007, 02:41:15 AM
Hey,
Does anyone know if its possible to create a addban or subnetban command?

The alias "vcmp.ban" will send the Player ID to the DLL file, not the IP.

I tried sending the IP to the DLL, using "vcmp.ban $vcmp.ip($vcmp.name(%a))"
But it didnt work :(

"vcmp.unban" sends the IP to the DLL and works fine.

So does anyone know if its possible with the current DLL?
#3
mIRC/pawn Scripting / Getting The Player Skin
August 18, 2007, 02:03:33 PM
Ok I need to get the players skin, for a !skin command and other reasons

So I thought, simple..

on *:SIGNAL:vcmp.spawn:{
  vcmp.say $vcmp.name(%id) Spawned As A ' $+ $readini(SkinLocations.ini,Skins,$vcmp.location(%id)) $+ '.
}

Obviously the ini would contain skin spawns locations and their names..
like:
[Skins]
Location=SkinName

So I tested it, but the problem was it was reading the location too early :\
only a few miliseconds, but enough to read the wrong location..

So I thought ok ill do area instead of location.

This time I had the same problem with it reading the area to early.

So I tried a timer:
.timerspawn 1 1 vcmp.say $vcmp.area(%id)
also
.timerspawn 1 20 vcmp.say $vcmp.area(%id)

I found out it reads the area at the start of the timer.. then says the area at the time specified.

Which is useless as I need it to read the area after the specified time.

If anyone can help me with this I would really apreciate it,

Thanks,
Mex.