Search Results
Or just block the ID 0 by creating it and removing it after create the vehicle.
For example:
PHP код:
CMD:createvehicle(playerid, params[])
{
    Iter_Add(Vehicles, 0);
    new id ...
393
He told you copy "Load_Vehicles" not OnGameModeInit
291
Use attach object editor : https://sampforum.blast.hk/showthread.php?tid=416138
148
Maybe make a vehicle pickup, i mean like MTA carpickups, when you pick it your car will be changed, also, Bonus pickups, like give you Nitro, repair car, other stuffs...
501
Well, today i'am trying to make something to attach a object to a vehicle, without using AttachObjectToVehicle, i mean i create a dynamic object and i create a vehicle i want to use EditDynamicObject ...
149
Or more simple, use foreach & y_iterator.
462
Quote:
Originally Posted by luke49
PHP код:
CMD:me(playerid, params[])
{
    new
        name    [ MAX_PLAYER_NAME ],
        string    [ 128 ],
 Â...
282
Amazing, nice work, some features to change rotation will be perfect
306
Map stolen from #FrankLeQueBeCois : https://www.youtube.com/watch?v=PBO6rF5y6O8
382
@TheKeviXz it's because i have use too many objects on the floor i think i'am going to make a new version to fix that.
@Gammix Thank you
998
Los Santos Bank
Introduction
Hello everyone, today i'am going to share my modern bank that i did it a few months ago, i didn't need it anymore so i'am releasing here, hope you like it.
Screenshot...
998
Quote:
Originally Posted by Konstantinos
You can reverse the iterator and it's always good to check if the string is not null before comparing it with another string.
PHP код:
Chec...
372
I have try this
PHP код:
CMD:getip0(playerid, params[]) return SendFormatMessage(playerid, -1, "%s", VirtualServerInfo[0][sIP]); // correct
CMD:getip1(playerid, params[]) return Sen...
372
Yes i'am sure, my test command work and always return the correct value, and i would like to say that this function don't return 0, it's return the first value of the loop, because i have try to edit ...
372
Hi, i have a small problem with this function :
PHP код:
stock CheckServerIp(string[]) {
    foreach(new i: VirtualServer) if(!strcmp(VirtualServerInfo[i][sIP], string)) return i;
...
372
I'am suggestion to make a global timer.
pawn Код:
OnGameModeInit() {Â Â SetTimer("CheckMinute", 60000, true);Â Â return 1;}forward CheckMinute(); public CheckMinute() {Â Â foreach(new i: Pl...
147
Use texture studio with group option if you don't have alot of objects.
397
Well done, i'am thinking about a per player chat panel like :
Код:
createPlayerChatPlayer(playerid);
1,088