Search Results
Maybe im stupid, or I missed something. When player registers on the server, are u sure, that he's data gonna be saved when he will disconnect ? Cuz, I was trying all the ways, and the most common ide...
15,131
R39-5, I mean that whole thread is not showing up.
110
Yep, found it before you. But mysql log, still looks strange: PHP код: [23:32:22] [DEBUG] mysql_format - connection: 1, len: 1520, format: "UPDATE `users` SET Newbie = '%i', pLyt...
110
So I tried to do it like that: PHP код:     new string[1520],         Float:x, Float:y, Float:z;     GetPlayerPos(pid, x,y,z);     mysql_format(dbHandle, string, siz...
110
My saving code looks like this: PHP код: stock savePlayer(pid) {     new jox[1000], jox2[1000];     static Float:x, Float:y, Float:z;     GetPlayerPos(pid, x,y,z);    Â...
110
Still need help. - EDIT: Fixed, didin't used -r in pawn file, to detect the line faster. Problem wasn't in dialogs, it was in one of the stocks, that is stocking info.
106
Quote: Originally Posted by NaS It's hard to tell where exactly the error appears without knowing the values for some of the Arrays you use. Could you compile your mode with debug symbols ...
106
Hi, So the main error I'm getting to server.exe:: PHP код: [debug] Run time error 4: "Array index out of bounds" [debug]  Attempted to read/write array element at negative in...
106
Getting information, n other stuff. In this part i'm showing the list of the players in the work/faction, it's ok in this part. PHP код: format( g_szBuffer, 500, "SELECT * FROM `users`...
47
Quote: Originally Posted by lexurs Which version of MySQL are you using? Also, is the "id" column retrieving an integer? mysql R5, yes it is.
154
PHP код: LoadPlayerData(playerid){     new query[1000], Float:xPos[3], result[121];     format ( query , sizeof ( query ) , "SELECT * FROM players WHERE name = '%s' ...
154
The prints are showing up, but dialog doesnt pop up. PHP код: new dString[200], dStCat[200*MAX_ACTORS_HISTORY], dokass[50];         format(dString, 160, "Vardas\tPatirtis / lygi...
159
Quote: Originally Posted by Gammix Ofcourse, this week I'll release it. Busy in work for now. Are u gonna release it with the newest mysql version (r41-2 ( think so ))?
7,848
Is there gonna be the mysql version as u mentioned Gammix?
7,848
Quote: Originally Posted by Micko123 Do you have /createhouse command or smth like that? Its comes out from the DB.
186
Quote: Originally Posted by Micko123 Okay so when you create house are you sure it is saved as it should be in DB? It should be in here and it is here. PHP код: enum farmHouses...
186
The firstplantation, second and a third is apearing. But house still goes to 0.0000 0.0000 0.0000 cords.
186
Quote: Originally Posted by Cerealguy check you no load firstPlantationX , firstPlantationY, firstPlantationZ, You are calling variables you have not loaded They are in the enum or how ...
186
Quote: Originally Posted by Cerealguy the row id bro, cache_get_field_content_float(row, const field_name[]) change 0 to i , example FARM[i][POSZ] = cache_get_field_content_float(i, "posZ...
186
PHP код: public farmsLoad(){     new query[128];     mysql_format(mysql, query, sizeof(query), "SELECT * FROM `farms_info`");     mysql_query(mysql, query);     for(ne...
186