Search Results
Quote:
Originally Posted by dh240473
More Error Pop UP
C:\Scripting\EBoss1.pwn(3223) : error 036: empty statement
C:\Scripting\EBoss1.pwn(3230) : warning 225: unreachable code
C:\Scripting...
48
Replace your ProxDetector where it's defined with this:
Код:
public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)
{
if(IsPlayerConnected(playerid))
{
new Float:posx, F...
29
Код:
CMD:setmessage(playerid,params[])
{
new SetMessage[128], string[128];
if(sscanf(params,"s[128]",SetMessage)) return SendClientMessage(playerid, -1, "Usage: /setmessage [custom messag...
62
Can I see where you defined the PersonalMessage variable?
62
Try this:
Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
if(IsAMower(vehicleid) || IsAPetrolTruck(vehicleid) || IsATruck(vehicle))
{
SetVehicleToRespawn(vehicleid);
}
else if(IsAPro...
40
Код:
CMD:setmessage(playerid,params[])
{
new SetMessage[8], string[128];
if(sscanf(params,"s[8]",SetMessage)) return SendClientMessage(playerid, -1, "Usage: /setmessage [custom message]")...
62
Quote:
Originally Posted by Ryan50
The code you gave me, didn't set the color.
Does this returns the color code? ( eg. You have set your message as: {FF0000} )
Код:
format(string,...
62
Hashed passwords are in numbers / integers. They are not strings. You use strcmp to compare 2 strings. Something like this would fix it:
Код:
if(PlayerInfo[playerid][pPassword] == num_hash(params...
48
Код:
CMD:setmessage(playerid,params[])
{
new SetMessage[8], string[128];
if(sscanf(params,"s[8]",SetMessage)) return SendClientMessage(playerid, -1, "Usage: /setmessage [custom message]")...
62
Код:
ShowPlayerDialog(playerid,500, DIALOG_STYLE_LIST, "Wanted List.",string,"Ok", "Cancel");
22
Quote:
Originally Posted by Tamy
CreateObject returns object ID assigned by the server to that object, so 13 is the object ID of that object.
It's not as I didn't create any other objec...
20
Whenever I check a variable which I created: ( new Objects[1000] ) and create an object using it ( Objects[0] = CreateObject.... ) if I printf("ObjectID: %d",Objects[0]) it returns ObjectID: 13. Why?
20
I'm pretty sure the problem is with the Recording File. Have you checked if the Recording File exists and it's placed in the right folder?
21
Quote:
Originally Posted by Kinsley
It could also do that only covers the islands of SF and LV?
You want it only to cover San Fierro and Las Venturas?
42
Quote:
Originally Posted by Kinsley
Thanks, I try and let you know Rep +1
Here's a rep for you too! :3
42
Quote:
Originally Posted by BlackEvils
Thanks you!
No probelm!
19
Код:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <streamer>
new MyTimer[MAX_PLAYERS];//gang...
19
You can use GangZoneCreate and cover the whole map with a black gang zone. That will hide perfectly the map :3
Here is a small code:
On top under #include<a_samp>
Код:
new map;
#define CO...
42
Quote:
Originally Posted by FreAkeD
Read this: https://sampwiki.blast.hk/wiki/Colors_Li...ransparency.29
It's pretty helpful.
Oh that helped me a lot! Thank you bro!
17
I'd like the hex code to make a TextDrawBox Transparent or invisible if it's possible. Thank you!
PS: I'm using Preview Models that's why I need it.
17