Search Results
I noticed that objects with CreateDynamicObject are not created, I have last version of streamer, in server log prints that is loaded, I made debug and it returns and id of created object but its not ...
53
Quote: Originally Posted by jlalt follow this style of object create it would work Not working, and I also noticed that objects created with CreateDynamicObject won't create, only Creat...
102
Ok issue is fixed if CreateObjcet is used, I want to create per player object and I use function CreatePlayerObject, but it doesen't create object, any clue why is this happening?
102
Not working and playerid can't be used under OnGameModeInit (can with loop), I used in OnPlayerConnect
102
Hello, I have problem with creating dynamic object On top of script Код: new grass; OnGameModeInit: Код: grass = CreateDynamicObject(702, -30.87103, 2166.84399, 20.48755, 0.00000, 0.00000, 0...
102
Try this: Код: case Dialog_Login_Password: { if ( !response ) return Kick ( playerid ); if( response ) { if(udb_hash(inputtext) ==...
47
Tutorial: https://sampforum.blast.hk/showthread.php?tid=583234
118
Yes. Solved, was an issue with y_ini.inc
88
Код: for(new house; house <= 1100; house++)
123
Here is simple reg/log system using yini: https://sampforum.blast.hk/showthread.php?tid=273088
87
Quote: Originally Posted by GeneralAref what is name this software? download link plz. Its calculator on your computer. Just in settings chose "Programmer" and you will get it same as o...
113
You can make it like this: Top of your script: Код: new commandTimer[MAX_PLAYERS]; Put this in command that you want to limit by timer: Код: commandTimer[playerid] = gettime() + 20; // player...
118
put this with rest of code after player register Код: new string[35+MAX_PLAYER_NAME], playerName[MAX_PLAYER_NAME]; GetPlayerName(playerid, playerName, sizeof(playerName)); format(string, sizeof(st...
121
Here is saving and loading using YINI enum pTime load Code: INI_Int("Time",PlayerInfo[playerid][pTime]); save Code: INI_WriteInt(File,"Time",PlayerInfo[playerid][pTime]); and still can't save it, ...
88
Why I can't store gettime? I make it like this: Code: PlayerInfo[id][pTime] = gettime();
88
How I can make object to rotate while moving? I tryed like this: Код: new grass; grass = CreateObject(702,-172.7709,1688.5282,16.3303, 0, 0, 0, 300.00); MoveObject(grass, -180.6491, 1685.0883, 1...
78
Well then the code is ok. Its black because your name is black in game. Put this OnPlayerSpawn just for testing: pawn Код: SetPlayerColor(playerid, 0xFF0000FF); // remove me when testing is over...
106
In this line change color: pawn Код: SendClientMessageToAll(COLOR_CODE_HERE, string);
106