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.


Topics - Tonys

Pages: [1]
1
Support / Constantly Timing Out
« on: February 25, 2010, 05:53:51 pm »
I've had this problem for a while now and to be honest I think it's cause am using a Wireless connection but I can play VC:MP fine on the laptop.  I can join a server then a few mins later i'll time out for some reason.. I just want to know if anyone had a similar problem and can help me fix mine.

2
mIRC/pawn Scripting / Question
« on: January 15, 2010, 09:23:26 am »
Ok so uh how do you create commands in pawn using /c !commandhere and not just !commandhere.

3
mIRC/pawn Scripting / Small compiling problem with pawno
« on: January 12, 2010, 03:14:40 am »
I'm getting this error when compiling my anti-minigun FS.

Code: [Select]
C:\Users\eee\Desktop\VCMP [PAWN]\filterscripts\antiminigun.pwn(18) : warning 202: number of arguments does not match definition
C:\Users\eee\Desktop\VCMP [PAWN]\filterscripts\antiminigun.pwn(18) : warning 202: number of arguments does not match definition

Here is the line that it's refering too -

Code: [Select]
weaponchecktimer = SetTimer("WeaponCheckTimer", 5000, 1,"i",i);
Rest of the OnFilterScriptInit -
Code: [Select]
public OnFilterScriptInit()
{
print("| ****** Anti-Minigun ******|");
print("| *** Created By:  Tonys ***|");
print("|***************************|");
        for(new i; i<MAX_PLAYERS; i++)
{
weaponchecktimer = SetTimer("WeaponCheckTimer", 5000, 1,"i",i);
return 1;
}
return 1;
}

Any help greatly appreciated.
First time using pawn..

4
Support / Pickup's
« on: October 01, 2007, 07:40:07 pm »
Is it possible to add in weapon and Health pickups in Build Mode? if not is there any other way.

Pages: [1]