Search Results
Quote: Originally Posted by [uL]Pottus Try processing it through Texture Studio https://sampforum.blast.hk/showthread.php?tid=471474 I really don't know what I should texture in this m...
373
Ah, one of the best releases on the forums, comes very handy for lazy mappers like me
5,932
Fantasy Region Should've added more details here Map author: Youarex Editor: Universal Object Editor Objects: ~100 Trailer: You can travel from one star to another by jumping one of the balloon...
373
Updated video in the first post.
319
Quote: Originally Posted by Ninad Nice one! But where can we use this! RP? Quote: Originally Posted by MrEdinLaw No idea where to use it. Also its simple. Imagination can...
319
Witch Skin Type '/witch' to transform yourself into witch and again to transform back (rcon admin). The witch can cast spells, but since I'm busy doing other "very cool stuff", you would have to cre...
319
Quote: Originally Posted by Champ Wow! Nice. Can you create the logos much brighter? Sorry, I don't have time for that, buy brighter graphic card instead. Quote: Originally P...
266
Simple textdraw to display team strength in the bottom right corner of the screen. Few functions for ease of use: ShowRedTeamStrength(strenght); ShowBlueTeamStrength(strenght); The rest you can ...
266
Quote: Originally Posted by cray1100 I will do that... So, should i make a video tutorial? Or... just a written one? Since you're being so voluntary, make a downloadable version of adob...
278
Quote: Originally Posted by Bravo6 I gave u PM Quote: Originally Posted by cray1100 I have pm'ed you back Quote: Originally Posted by Bravo6 I'll REP+ when I ...
278
Assuming there are more than one admin vehicles. pawn Код: #define MAX_ADMIN_VEHICLES 3new AdminCar[MAX_ADMIN_VEHICLES]; pawn Код: public OnFilterScriptInit(){    AdminCar[0] = CreateVehicl...
138
Move includes to \samp03x_svr_R1-2_win32\pawno\include folder and then compile.
196
Simple as 1 2 3. 1) https://sampforum.blast.hk/showthread.php?tid=91354 2) https://sampforum.blast.hk/showthread.php?tid=120356 3) pawn Код: CMD:wankoff(playerid, params[]){    new wstyle;  ...
83
pawn Код: new Float:zones[][zoneinfo] = {    { "LV Drug House (Int)",     2363.7732,  -1135.5873,    1050.8750,  2366.7190,  -1125.8083,  1050.8826},    { "Alcatraz",            ...
182
Quote: Originally Posted by Edix You dont need to get the vehid again as its in the callback already "(playerid, vehicleid)" less lines YAY \O/. Yes, you are absolutely 100% correct. Th...
128
It doesn't seem work for the driver unless you call in between function like SetPlayerPos pawn Код: {    new        vehid, seatid;            vehid = GetPlayerVehicleID(playerid);  ...
128
pawn Код: if(GetVehicleVelocity(vehicle, x , y, z) > 50)) You get error because there's unmatched closing parenthesis at the end. Also that if statement won't work properly. GetVehicleVelocity ...
121
One way would be to replace CreateObject with your own function. Loop alternative above should also work, if you have indexed arguments in an array. pawn Код: new objects[5];new i_count; pawn К...
146
You mean the compiler compiles with errors or the command doesn't work? There's appears to be one extra bracket on the wiki example. Maybe someone will fix that some day. pawn Код: public OnPlaye...
54