Search Results
Quote: Originally Posted by FullCircle pawn Код: stock LoadAllDoors(){    new indexx = 0;    for(new index = 1; index < MAX_CASAS; index ++)    {        if(fexist(DoorPath...
187
Quote: Originally Posted by Eyce It's okay. Here's what I mean, if the player dies while being the driver of the vehicle - he stays in his position but not sent to the hospital. You tri...
173
You want to send the player to the hospital, but no the car, no? Sorry for my bad english...
173
Quote: Originally Posted by PowerPC603 Place printf statements everywhere in the code, you should be able to figure out where and why it stops working. After each line of code, just print ...
187
Quote: Originally Posted by Ox1gEN I am not sure. 1. You are either flooding the start-up of the server when performing many functions at once which cause it to stop. 2. LoadAllDoors prob...
187
Quote: Originally Posted by Schneider Try to disable each function one by one (just put // in front of it) to find out which function is causing the crash. Doesn't crash, only stop loa...
187
When I run the server, OnGameModeInit stop working... I have this: pawn Код: LoadAllVehicles();    DeleteAllInvalidVehicles();    LoadAllConcesionarias();    LoadAllCasas();    LoadAllDoor...
187
pawn Код: error 032: array index out of bounds (variable "RandomPizzaTimer") pawn Код: new RandomPizzaTimer[][] ={    {15, 0},    {15, 0},    {15, 0},    {15, 0},    {15, 0}};new Ra...
63
Quiero crear un stock para que le saque municiones y se las de, Informacion[playerid][cArma][13] es el slot del arma, y Informacion[playerid][cAmmo][13] es la municiуn, aunque es algo obvio... el pro...
68
I want to create some stock to give ammo, and remove it, I made this, Its works... but sometimes doesnt work Stock Thanks EDIT: I have an other problem, I don't know if is a samp bug or what... I ...
44
Okay... Let's go: We would use zcmd for this tutorial. We first would create a stock for use in the future... pawn Код: stock AdminChat(level, Msg[]) //Level is the minium admin what we must have...
170
Quote: Originally Posted by Virtual1ty You can use strins() for this. Though there might be an optimised way of doing this by only looping through the string once and copying/modifying it ...
122
The 'cPatente' is the number plate, Ex: "ASD123", the letters appears, but the numbers no, I used %d for only use the numbers with color
122
Hello, I want to color only numbers in licence plate... I tried this: pawn Код: format(string, sizeof(string), "%s", cInformacion[ID][cPatente]);format(string2, sizeof(string2), "%s {FF0000}%d", ...
122
TextDrawShowForPlayer(playerid, Textdraw0[playerid]);
110
I create a system vehicle with this tutorial: This! And I create a command to delete vehicles: pawn Код: CMD:borrarvehiculo(playerid, params[]){    new vehicleID, string[128], File[25];    if(...
94
Quote: Originally Posted by NaS pawn Код: stock IsLettersOnly(string[]){    for(new i = 0; i < strlen(string); i ++) if(tolower(string[i]) < 97 || tolower(string[i]) > 122) ...
71