Search Results
Quote:
Originally Posted by Kshishtof
The "discord of SA-MP" is known for a place of trolls, toxic people. I would never call it something "official" since it's run by some users who in fa...
1,698
Create[Dynamic]Pickup is the function you're looking for, or you can fancy your own pickup system that moves the object up and down.
Currently you just create the object and an area to detect entry, ...
216
YESSS! That's exactly what I wanted to hear!
Seriously, that's awesome. I requested this is the third post and this genuinely makes me hard.
Now once that's complete we just gotta make a navigationa...
2,591
Show us the definitions of SQL_HOST, SQL_USER, SQL_PASSWORD, and SQL_DATABASE.
252
Quote:
Originally Posted by Markski
Depending on what object streamer you use, you'll have to make sure the objects are in the same Virtual World where the login screen is.
FALSE.
----...
256
SetObjectMaterial(objectid, 0, -1, "none", "none", 0xFFFFFFFF);
That will set the texture to the highest brightness supported by the object.
EDIT: Oh! You mean the mini-map shadow detector thing. Y...
180
Regarding NaS\'s idea, you could simply assign 10 "Extra IDs" and export in streamer format. Streamer already includes an Extra ID suite as well as a lot more information storing.
3,289
Quote:
Originally Posted by Despare
Yeah it looks like YSI is way outdated and yeah i'm trying to use an old gamemode.
You'll have much better luck just using a newer gamemode or making...
550
https://github.com/maddinat0r/sscanf
https://sampforum.blast.hk/showthread.php?tid=570927
Also, your YSI is outdated... YEARS AGO. Are you trying to use an old gamemode?
550
Quote:
Originally Posted by Benzi
Can you show the code please
No, this isn't a place where you come and just get someone to code for you. It's a learning zone. xD
But, if you are usin...
307
Quote:
Originally Posted by Grumbles
Yeah, that's exactly what I mean. I'm using OnPlayerCommandText as the command client.
Okay. Then first I'd highly recommend using a command process...
659
Quote:
Originally Posted by Grumbles
You misunderstood me. I'm not talking about alias. I don't know the name of a command. I'm just writing '/ hel'.
I want to say that the command '/ help...
659
In recap of my previous comment, I have nothing against this being a Gamemode Fiddler. I just think that name is better in this case. In fact I prefer the idea of having the option to run a SA-MP Game...
3,432
Considering it literally uses a SA-MP server instead of a separate PAWN implementation, this isn't a "PAWN Fiddler." It's a SA-MP Gamemode Fiddler.
Also, can't include a_samp.
3,432
pawn Код:
if(!strcmp(hostname,Server[validhostname],false)) { format(szCmd, sizeof(szCmd), "hostname %s", Server[validhostname]); SendRconCommand(szCmd); }
In this...
265
Yeah this is actually exactly what you probably want to do! Nice usage of an iterator... however, you may want to use "multi-iterators" instead of an array of iterators.
See here for more info, chec...
463
Quote:
Originally Posted by Grumbles
Since the first three letters are similar, can't I propose this instead of the error command?
No. This is something you'll have to implement.
Which...
659
Quote:
Originally Posted by Nero_3D
but the seperator isn't on 5,10,15 it is on index 4,9,14, so you should do
pawn Код:
if(i % 5 == 4)
also I am unsure why you used a switch instead o...
548
lol
This is essentially correct...
Quote:
Originally Posted by bgedition
simply change
pawn Код:
if(i % 4 == 0) // If 'i' is a multiple of 4
to
pawn Код:
if(i % 4 == 0 && i...
548
Quote:
Originally Posted by ColweeN
then? what i have to do now?
We don't know what you have to do. You didn't explain anything and you didn't even give us real code. WHAT are you tryin...
461