Search Results
Quote: Originally Posted by g_aSlice sup, I'm working on a "hold object studio" to help finding, placing, and rotating objects in SetPlayerHoldingObject. I wanted it to show the name of wh...
463
pawn Код: command(gotolv, playerid, params[]){    // If you use zcmd, you won't have to suppress this warning.    #pragma unused params    if(PlayerStatistics[playerid][pAdminLevel] < 3) ...
66
Quote: Originally Posted by Zamaroht You need to create an array to use as a string, and format it: pawn Код: new money = random(10000-5000)+5000;GivePlayerMoney(playerid, money);new ...
98
Quote: Originally Posted by Y_Less Using a script publically released for public use, when used by you (a member of the public) is not stealing or copy-pasting, especially when that script...
173
Quote: Originally Posted by Elder_of_Zion I have a command called "goto" that works perfectly? Does it matter if you use it like that? Commands named goto are fine, but variables name g...
90
Goto is a reserved keyword in Pawn. Change the goto variable to anything else.
90
Quote: Originally Posted by Brian_Furious I got a webhosting from serverffs with MySQL databases but i dont find the ip adress to connect the MySQL If your SQL databases are on the same...
114
Read the responses! Remove "playerid, "
161
Quote: Originally Posted by The_Moddler I'm making a command with sscanf, pawn Код: if(sscanf(params, "us[8]d", id, objetos, cantidad)) return SendClientMessage(playerid, COLOR_WHITE,...
70
Post the enum where you defined PlayerItems and I will help you get closer to the code you need. Conroy has posted a solution that should work, I understand you just need some help adapting it to your...
173
Quote: Originally Posted by Mauzen I never used defines with more than one line, but i saw some in other topics, correct me if i am wrong. try replacing the SetPVarInt(%0, "Health", GetPl...
126
You need to find a SQL host that will give you more control over your databases. You will not find a free host with this level of configuration. The only solution we can recommend is that you purchase...
114
You should migrate to Whirlpool.
78
Try this: pawn Код: // Add this line to the commandSetTimerEx("UnjailPlayer", jailTime * 1000, false, "d", otherId);forward UnjailPlayer(playerid);public UnjailPlayer(playerid) {    // Change t...
176
Post your "ObjectMoveBack" function. Your syntax is wrong for SetTimerEx and your code could use some optimization. Post this function and I'll help you out.
213
pawn Код: stock CreateStrip(Float:x,Float:y,Float:z,Float:Angle){    for(new i = 0; i < sizeof(SpikeInfo); i++)    {        if(SpikeInfo[i][sCreated] == 0)        {           ...
71
Did you search the forums at all? This has been asked many times. If you searched the wiki, you would have found this: https://sampwiki.blast.hk/wiki/GetPlayerCameraFrontVector This requires working...
189
Do you have MySQL set to refuse connections except from localhost? This looks like a problem with your SQL configuration. EDIT: I see you are attempting to use a free web host to store your database....
114
Quote: Originally Posted by [LSB]TheGame Filterscript Okay, then you are likely returning the wrong value in the main gamemode. What are you returning in OnPlayerCommandText in the main...
101