Search Results
Quote: Originally Posted by S4t3K I highly suspect you to own a Roleplay server and thus to want our ideas to make your unique system based on our unique ideas. Am I wrong ? No, you ar...
128
Spread your ideas for the most neat house system that will fit just perfect in a roleplay server. Efficient and simple system, give me idea of what should I do and how should it look like.
128
PHP код:          LDATA[i][LOBJECT] = CreateDynamicObject(Items[LDATA[i][ArrayID]][Object], spawnX, spawnY, spawnZ-0.88, 0.0, 0.0, 0.0, -1, -1, -1, 200.0);         ...
98
What filterscript have you used to make these?
327
There's an easy way to do so by using a modulo operator. PHP Code: if(Spree[killerid] % 10 == 0) { // Action } 
568
Quote: Originally Posted by howtodo all fine but my player move with bugs now LOL but thank you for the help... I think it cleans every second the anim You can always add a simple boo...
180
OnPlayerUpdate is not recommended. You may use a timer like this PHP Code: forward _UpdatePlayersStatus();public OnGameModeInit(){    SetTimer("_UpdatePlayersStatus", 1000, true);    r...
180
Are you using MySQL or this is just an INI file?
155
PHP код:     if (strcmp("/repairall", cmdtext, true, 9) == 0)    {        for(new i=0; i<MAX_VEHICLES; i++)            RepairVehicle(i);        S...
96
You can use this great include made by Joe Staff https://sampforum.blast.hk/showthread.php?tid=124091
93
Quote: Originally Posted by ColeMiner CrazyFrenzy: That code won't even compile. Misiur: There's a newer version in YSI. I was just giving an example of use in a public, my point wasn'...
613
You forgot to mention how to reset a string. STRING: PHP Code: new string[64]; format(string, 64, "Vacant"); OnPlayerConnect(playerid) {     string = EOS;      or     string =...
613
Quote: Originally Posted by GalaxyHostFree Dear this isn't really a tutorial. You must explain them line by line. You're right buddy, I managed to adjust it a little.
356
Go to the CMD, type ipconfig /flushdns Make sure your SA:MP version fits the SERVER version. Log in and have fun.
230
Thank you for the tutorial! You could have just make this to simplify the whole idea. PHP код: CMD:walkstyle(playerid, params[]) {     if(strval(params) < 1 || strval(params) >...
700
Check if the player swims Step 1 Make sure to have the a_samp include and those definitions in the top of your script. PHP Code: #include <a_samp> #define PLAYER_SWIM     (1) #defin...
356