Search Results
https://sampforum.blast.hk/showthread.php?tid=447813
500
Quote: Originally Posted by AndySedeyn This is your problem: PHP код: new string[128];  PHP код: format(string, 256, ""p"Hrбč "w"%s"p" vypsal odměnu na hrб...
126
Quote: Originally Posted by Abagail SA-MP doesn't offer such abilites for nearly any client type of functions. You can't listen to /pagesize because client commands don't register into the...
255
Use ShowPlayerMarkers(PLAYER_MARKERS_MODE_GLOBAL); if you always want to see the other players on the radar and ShowPlayerMarkers(PLAYER_MARKERS_MODE_STREAMED); if you want to see player markers on th...
126
Quote: Originally Posted by Jeroen52 What messages does it print? http://pastebin.com/raw/D3MYScqN
90,675
Just upgraded to version 2.8, when I launch the server it prints some debug stuff and it won't load the plugin. How cam I fix this?
90,675
OnPlayerShootDynamicObject is part of the streamer plugin.
136
Something like this? Code: public OnPlayerShootDynamicObject(playerid, weaponid, STREAMER_TAG_OBJECT objectid, Float:x, Float:y, Float:z) { DestroyDynamicObject(objectid); return 1; }
136
Quote: Originally Posted by D0WN3D Still not loading any car http://s18.postimg.org/99jzh8u21/Untitled.png What did the printf print in the console?
148
Why do you use j? Try this: Код: function LoadDSVeh() { dsvehs = cache_num_rows(); for(new i = 1; i <= dsvehs; i++) { DSModels[i][dID] = i; DSModels[i][dModel] = cache_g...
148
Try this: Код: forward OnLoadHouses(); public OnLoadHouses() { new index; new rows = cache_num_rows(); if(rows) { while(index < rows) { hInfo[index][ID] = cache_get_fiel...
80
Yeah the size is still too small. Try 256.
154
What's the '\' for after `ID` = %d"? Код: stock SavePlayerData(playerid) { new query[256]; mysql_format(mysql, query, sizeof(query), "UPDATE `players` SET `IP`='%s', `Admin`=%d, `...
154
Quote: Originally Posted by Slice No, not without modifying the include. Do you ever use AddPlayerClass? Do you use weapon-config in a filterscript or the gamemode? I use AddPlayerCla...
33,039
Cache_get_row, shouldn't the 0 be n? cache_get_row(n, 0, r_msg); Cache_get_field_content should also be n instead of 0.
132
Quote: Originally Posted by BarFix Thats what this is xD Код: GetPlayerPos(playerid, x, y, z); TogglePlayerSpectating(playerid, true); PlayerSpectatePlayer(playerid, giveplay...
115
Yeah, you have to save the old position of playerid in a global variable. If you type '/spec off', it'll re-create giveplayerid, x, y, z. So x, y, and z will be 0 and that's why you spawn in Blueberry...
115
Nice tutorial. I would recommend using an enum to store dialog names. If you just use an ID, there's a chance you'll accidentally use that ID again and that can be confusing. https://sampwiki.blast...
445
Quote: Originally Posted by Slice Enable debug and show me the output. pawn Code: #define WC_DEBUG true#include <weapon-config> Code: [15:27:31] [connection] 127.0.0.1:49541 re...
33,039