Search Results
Yea, it compiles. Edit:// I solved the problem via timer. It seems to be a bug in SAMP.
92
Hi guys. I'm making a house system, but I got this problem with loading. It works great when I load it via command, but when I put my callback to load the houses into public OnGameModeInit, it doesn'...
92
Try to delete GTA San Andreas User Files folder from Documents. If it won't help delete it once again and reinstall the game.
312
Quote: Originally Posted by Vince No, this is coded into the actual game. Same thing happens if you take a photo of the photo-op icon. Health, armour and weapon icons also have default act...
90
Hi guys. Exists some way to disable this text when picking up a oyster? Thanks.
90
Quote: Originally Posted by Jefff Should load fine and missing in SendFormatMsg %d for model But It doesn't. It looks that problem is in these lines. Код: sscanf(string,"'('p<,...
155
Quote: Originally Posted by Jefff Remove one 'f' before p<)> Still the same problem.
155
Quote: Originally Posted by Jefff save pawn Код: new stringParams[150];new File:ini_doeMap = fopen(mapName, io_write);for(new i = 1; i < doe_Index + 1; i++){    format(stringParam...
155
Quote: Originally Posted by Jefff Show 'mapName', use standard file system and why you starts from 1 ? new i = 1; It's just a string with name of file. Yea, I could, but it would be eas...
155
Quote: Originally Posted by lwilson Still can't move, help please! Try Код: ApplyAnimation(playerid, "PED", "IDLE_CHAT", 4.1, 1, 1, 1, 1, 1, 1);
93
Hi guys. I'm making a InGame Object Creator and here is my code to save created objects: Код: new INI:ini_doeMap = INI_Open(mapName); for(new i = 0; i < doe_Index + 1; i++) { new stringName[...
155
So why this doesn't work? Код: obj[0] = CreateDynamicObject(id, X, Y, Z, 0, 0, 0); obj[1] = CreateDynamicObject(id, X, Y, Z, 0, 0, 0); obj[2] = CreateDynamicObject(id, X, Y, Z, 0, 0, 0); for(n...
165
It's pretty similar, read about it here: https://sampwiki.blast.hk/wiki/SetPlayerRaceCheckpoint
140
So problem should be in that gamemode I think. You can try race checkpoints instead of normal checkpoints.
140
I don't see any errors. I think it should work fine. Don't you showing more than one checkpoint in one moment?
140
Its my own function, just returns true or false Код: stock IsPlayerNearObject(playerid, objectid, Float:range = 2.0) { new Float:X, Float:Y, Float:Z; GetDynamicObjectPos(objectid, X, Y, Z); if...
165
Hi guys. I have a array with e.g. 10 different objects and I want to detect if is player near one of them. I used cycle for: Код: for(new i = 0; i < sizeof(myObjArray); i++) { if(IsPlaye...
165
Lol it's strange. It worked with just 6 variables, when I added 7th it crashed and then when I tried to include a_samp.inc it works normally. So problem resolved, thanks to everybody for your effort.
233