Jump to content
  • 0

5 Errors.


BlueSkiLLz

Question

D:\G@MES (Lucianâ„¢)\GTA San Andreas\DSK\gamemodes\DSK-Server.pwn(112) : error 020: invalid symbol name ""

D:\G@MES (Lucianâ„¢)\GTA San Andreas\DSK\gamemodes\DSK-Server.pwn(126) : error 017: undefined symbol "PlayerInfo2"

D:\G@MES (Lucianâ„¢)\GTA San Andreas\DSK\gamemodes\DSK-Server.pwn(126) : warning 215: expression has no effect

D:\G@MES (Lucianâ„¢)\GTA San Andreas\DSK\gamemodes\DSK-Server.pwn(126) : error 001: expected token: ";", but found "]"

D:\G@MES (Lucianâ„¢)\GTA San Andreas\DSK\gamemodes\DSK-Server.pwn(126) : error 029: invalid expression, assumed zero

D:\G@MES (Lucianâ„¢)\GTA San Andreas\DSK\gamemodes\DSK-Server.pwn(126) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

5 Errors.

112                   

new Text:PlayerInfo2[200];

#if defined PLAYER_INFO
new Text:PlayerInfo2[200];
#endif
126 
PlayerInfo2 = TextDrawCreate(10.0000, 425.0000,"  ");

    #if defined PLAYER_INFO
    for(new i=0;i<200;i++){
	  PlayerInfo2[i] = TextDrawCreate(10.0000, 425.0000,"  "); // 10.0000, 425.0000
	  TextDrawFont(Text:PlayerInfo2[i],3);
	  TextDrawLetterSize(PlayerInfo2[i],0.4,1.5);
	  TextDrawAlignment(PlayerInfo2[i],0);}
    #endif

Va rog sa ma ajutati iarasi

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

-126 :

PlayerInfo2 = TextDrawCreate(10.0000, 425.0000,"  ");

->

PlayerInfo2 = TextDrawCreate(10.0000, 425.0000,"  ");

In loc de 200 poti pune MAX_PLAYERS,si ii poti schimba valoarea punand liniile astea la inceputul modului:

#undef MAX_PLAYERS

#define MAX_PLAYERS 200

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.