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

Pages: [1]
1
Support / Can't change resolution for VC-MP.
« on: January 20, 2010, 04:37:10 pm »
Hi! Whenever I join a server, my resolution is always at 640x480x16. Although I have 1680x1050x32 set in GTA:Vice City. Any idea what could cause this?

OS: Windows 7, x32
Newest drivers for my GPU.

2
mIRC/pawn Scripting / OnPlayerText not recognizing ret 0?
« on: January 19, 2010, 08:24:40 pm »
Hi. Seems that the OnPlayerText doesn't recognize return 0, here's what I used:

Code: [Select]
if(cmdtext[0] == ';')
{
    for(new i = 0; i < 41; i++)
    {
        if(IsPlayerConnected(i) && GetPlayerTeam(i) == GetPlayerTeam(playerid))
        {
            newvar = FindPlayerIDFromString(tmp);
            format(tmp,sizeof(tmp),"[TEAM] %s: %s",gPlayers[newvar],cmdtext[1]);
            SendClientMessage(i,COLOR_GREEN,tmp);
        }
    }
    return 0;
}

Outputs (Wrong):
Quote
Ettans: ;message
[TEAM] Ettans: message

Whereas it should output:
Quote
[TEAM] Ettans: message

Any idea what's wrong or is it VC-MP bug?

Pages: [1]