Search Results
Well, I've finally managed to do it. It was a lot easier than I expected: Код: new itm1[32], itm2[32], total[64]; if(UserData[playerid][sItem1] > 0) { format(itm11, sizeof(itm1), "Item1: ...
155
Hello, I'm currently trying to create a dialog that shows the items that you have in your inventory after pressing a key, here's what I have Код: if (PRESSED(KEY_YES)) { new dialogstr[562]; if(...
155
Thank you, it worked, I forgot that floats aren't defined by default. And also thanks for the article, I really appreciate stuff like that, I'll learn how tags work a little better now.
63
Hi, I'm trying to create a vehicle system based on this tutorial https://sampforum.blast.hk/showthread.php?tid=416104 but I want to add more stuff than just what the tutorial has, and now I get 3 tag ...
63
I don't really like bumping threads, but I need an answer, this is the second time I create a post about this issue, the fist one never got a reply.
97
Does the "You appear to be stuck in limbo, medics are trying to revive you." message appears? If not, maybe it's because of this: Код: new Float:px,Float:py,Float:pz; if(GetPVarInt(playerid,...
111
You have to write all the plugins that you want to be loaded in the same line, like: plugins sscanf.so streamer.so and so with other plugins that you want to include
143
First, you need to use CreateVehicle. Second, you need to put -1 in the last argumment, as in: veh1 = AddStaticVehicleEx(467,-1435,-595,1056,96.287696,-1,-1,-1); That way it doesn't despawn if you ...
111
Just write the line at the bottom of the server.cfg file For example: weapon_rate 40 stream_distance 300.0 stream_rate 1000 plugins <and here you write the name of the plugin> Also, if you a...
143
Hello, I have an issue on my script, when a player empties his ammo and then disconnects, the weapon ID is still written in his user file, but with 0 ammo, is there a way to save the weapon ID as 0 if...
97
Con respecto al error, tienes que borrar el stock GetPlayerFPS(playerid), ya que en el JunkBuster lo tienes definido como JBC_GetPlayerFPS. El warning no estoy totalmente seguro, pero deberнas revis...
66
Estoy casi seguro de que el problema es en el stock, y no en el comando, intenta hacerlo de esta forma: Код: stock AdminMensaje(string[]) { for(new i = 0; < MAX_PLAYERS; i++) if(Informacion[i]...
106
Hello, I'm trying to save some weapon data as an string in order to save the weapon ID and the ammunition at the same time, in the same line. Heres my code: Код: new arma[13][2]; for (new i = 0...
53