Jump to content

[REZOLVAT] Problemă warning-uri


Salon
 Share

Recommended Posts

  • Username:Salon
  • Problema întălnită:Primesc 2 warning-uri destul de enervante...
  • Detalii despre problemă:Am făcut jobul Security transporter si bus driver pe burned...
  • Ce ai încercat să faci înainte să postezi?:Să rezolv, mă chinui de 1 oră.
  • Cod sursă (recomandat pastebin.com) :https://pastebin.com/CBzzEEaG
  • Alte detalii:Mersi!
Link to comment
Share on other sites

warning 202: number of arguments does not match definition

Primesti acest warning atunci cand ai folosit o functie dar nu i-ai pus toti parametrii. Spre exemplu:

SendClientMessage(playerid, -1, "Mesaj"); // asa este normal
SendClientMessage(playerid, "Mesaj"); // lipseste un parametru, mai exact culoarea

warning 217: loose indentation

Primesti acest warning cand codul nu este in rand ca restul liniilor din jurul lui. Spre exemplu:

SendClientMessage(playerid, -1, "Mesaj");
    new x;

 

Respecta si vei fi respectat.

 

BigInt Pawn:

Pacman C++: 

Snake C++:

Minesweeper C++:

 

mattbb.cash

leaks.ro

Link to comment
Share on other sites

  • Administrator
Linia 4132: PlayerTextDrawSetString(playerid, InfosTD, "Ai castigat: ~g~$%s", FormatNumber(amount));

Tu formatezi un mesaj direct in functia de SetString a textdraw-ului? Nu ai sa poti face asta niciodata.

 

Rezolvare:

new string[64]; format(string, sizeof string, "Ai castigat: ~g~$%s", FormatNumber(amount));
PlayerTextDrawSetString(playerid, InfosTD, string);

? 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

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