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

Pages: [1] 2
1
Support / Re: Can't start Vice City
« on: February 04, 2011, 01:14:59 pm »
So you are saying that when you try to run VC your PC is self restarting? And SA & 3 works?

Maybe you should update Vc to 1.1? The 1.1 has some graphic fixes.

You said that there were no problems when you had XP previously. What OS are you using now? Try to get the latest drivers for anything on your PC. Downlaod also a tool like AIDA32, CPU-z, SpeedFan or whatever to check the temperature on your pc.

Close any background apps, even explorer.exe.

Also post information about your PC (processor, ram, graphic card). At least you can write to Rockstar games/Take 2. I have one time written to them, a silly bug with SA, but they have helped to solve it.

I still have Windows XP SP2

PC data:
Ram: 960MB
CPU: AMD Athlon x2 4000+      2,11Ghz RAM
Graphic card: nVidia Geforce 6100 nforce 405 with 256VRAM

2
Support / Re: Can't start Vice City
« on: December 27, 2010, 06:07:43 pm »
Anyone can help? ALL other games runs without problems.

3
Support / Re: Can't start Vice City
« on: November 28, 2010, 07:37:03 pm »
I have different blue screen, code refers to hardware problems... I haven't changed anything in hardware 3 years.. It happens only with vice city! I will try remove all drivers and reinstall.

Code: *** STOP: 0x000000F4 (0x00000003, 0x8568E658, 0x8568E7CC, 0x805D120A)

4
Support / Re: Can't start Vice City
« on: November 28, 2010, 03:05:02 pm »
lol, do you have brains or you are automatic spam machine?

5
Support / Re: Can't start Vice City
« on: November 28, 2010, 12:22:24 pm »
from event log:
Event Type:   Error
Event Source:   Application Error
Event Category:   None
Event ID:   1000
Date:      2010.11.22.
Time:      14:33:35
User:      N/A
Computer:   LIETOTAJ-48B8CB
Description:
Faulting application gta-vc.exe, version 0.0.0.0, faulting module gta-vc.exe, version 0.0.0.0, fault address 0x0015251a.

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 41 70 70 6c 69 63 61 74   Applicat
0008: 69 6f 6e 20 46 61 69 6c   ion Fail
0010: 75 72 65 20 20 67 74 61   ure  gta
0018: 2d 76 63 2e 65 78 65 20   -vc.exe
0020: 30 2e 30 2e 30 2e 30 20   0.0.0.0
0028: 69 6e 20 67 74 61 2d 76   in gta-v
0030: 63 2e 65 78 65 20 30 2e   c.exe 0.
0038: 30 2e 30 2e 30 20 61 74   0.0.0 at
0040: 20 6f 66 66 73 65 74 20    offset
0048: 30 30 31 35 32 35 31 61   0015251a
0050: 0d 0a                     ..     


2. When I disable auto restart appears blue screen.

6
Support / Can't start Vice City
« on: November 27, 2010, 10:05:59 pm »
When I try to start Vice City computer when first loading screen appears, computer just restarts. With other games like San Andreas or III everything works fine. I have reinstalled VC 4 times, previously (before windows xp reinstall) all was ok.

7
Support / Re: VCmp Problem! can't get car Strike Help needed!
« on: October 29, 2010, 01:27:04 pm »
i have change it becuz .every time anywhere ping is changed








i am releasing new GUPS v5 SooN hope you like it


lol.

8
mIRC/pawn Scripting / Re: How to make a post in the game?
« on: August 30, 2010, 09:36:44 pm »
he mean somehing else   
Quote
Id 0 wrote in his "seemylatters" and sees the message in his left another player.

9
mIRC/pawn Scripting / Re: How to make a post in the game?
« on: August 30, 2010, 08:38:03 pm »
i wanted this script for my server true, if i will make one script i will give you

10
Support / Re: Need Help
« on: August 27, 2010, 12:47:10 pm »
announce is on?

11
mIRC/pawn Scripting / Re: Not work
« on: August 25, 2010, 09:34:59 pm »
else if (strcmp(cmd, "!givecash", true) == 0) {
          new tmp2[256], plr;
         
      tmp = strtok(cmdtext, idx), tmp2 = strtok(cmdtext, idx), plr = FindPlayerIDFromString(tmp);
      if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_TEXT, "You need to login first!");
      else if (!strlen(tmp2)) SendClientMessage(playerid,COLOR_TEXT, "USAGE: !givecash [Nick/ID] [Amount]");
      else if (GetPlayerHandCash(gPlayers[playerid]) < StrToInt(tmp2)) SendClientMessage(playerid,COLOR_TEXT, "Error: You havent got the needed money.");
      else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_TEXT,"Error: Unknown player");
      else if(!IsPlayerRegistered(gPlayers[plr])) SendClientMessage(playerid, COLOR_TEXT, "Error: That nick is not registered!");
      else if (!IsNumeric(tmp2)) SendClientMessage(playerid,COLOR_TEXT, "Error: Invalid Amount!");
      else {
         format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to:[ %s ]", StrToInt(tmp2),gPlayers[plr]);
         SendClientMessage(playerid,COLOR_TEXT, szMsg);
         DecPlayerHandCash(playerid,StrToInt(tmp2));
         IncPlayerHandCash(plr,StrToInt(tmp2));
      }
      return 1;
      }


change COLOR_TEXT to COLOR_GREEN for example.

12
mIRC/pawn Scripting / Re: Not work
« on: August 12, 2010, 11:38:56 am »
all problems are here:
   else if (plr != INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Error: Unknown player");

!= change to ==

it should look like this:
else if (plr != INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Error: Unknown player");


and more one thing

find this line:      format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to:[ %s ]",tmp,gPlayers[playerid]);
and change this to  format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to:[ %s ]",StrToInt(tmp2),gPlayers[playerid]);

13
mIRC/pawn Scripting / Need help with speedometer.
« on: August 05, 2010, 03:05:38 pm »
code:

@ OnGameModeInit: SetTimer("Speed",250,1);

Code: [Select]
public Speed()
{
for(new i = 0; i <= USERCOUNT; i++)
    {
        if(IsPlayerConnected(i))
{
new Float:x, Float:y, Float:z, distance,result,resultx[256];
    x=PlayerInfo[i][PosX];
y=PlayerInfo[i][PosY];
z=PlayerInfo[i][PosZ];
distance=GetDistance(i, x, y, z);
result=distance*6;
 format(resultx,256,"%dkm/h",result);
GameTextForPlayerBottom(i,resultx);

new Float:x2,Float:y2,Float:z2;
GetPlayerPos(i,x2,y2,z2);
PlayerInfo[i][PosX]=x2;
PlayerInfo[i][PosY]=y2;
PlayerInfo[i][PosZ]=z2;

}

}
}

but function is not working well, it needs improvements.
sorry for my english.

14
mIRC/pawn Scripting / Re: [PAWN]Bug list 0.3z
« on: August 03, 2010, 05:33:19 pm »
please fix Callback OnPlayerText

Returning 0 in this callback will stop the text from being sent, not work  :(

in 0.4 version, this is done.. i think.

15
mIRC/pawn Scripting / Re: GetPlayerSpeed
« on: July 29, 2010, 11:43:14 am »
There would be SetTimerEx very useful, thanks for answer.

Pages: [1] 2