0.3e Suggestions

Suggestion #1:

PlayLoopAudioStreamForPlayer(playerid, URL[]);

- Makes songs that being streamed from URL looped (When the song over, start it again)

Suggestion #2:

TextDrawURLTexture(Float:X, Float:Y, URL[]);

- Load pictures from URL.
Reply

Quote:
Originally Posted by Tannz0rz
Посмотреть сообщение
Now rip that function out of your pile of code and turn it into a working PAWN function or it won't help me at all. lmao
Reply

add plz arm wrestling animation

P.S. sorry, short message
Reply

Please make the scoreboard toggleable!
Reply

Yes, can be made with a loop, but a big one, default is better:
Код:
native GetVehicleDriver( vehicleid ); // returns playerid, INVALID_PLAYER_ID if vehicle don't have driver
Very useful for sumo servers:
Код:
forward OnVehicleTouchVehicle( vehicleid, touchedvehicleid );
EDIT:
With these functions we can make a nice solitaire game:
Код:
native TextDrawAttachToMouse( Text:text, playerid, Float:OffsetX, Float:OffSetY );
native PlayerTextDrawAttachToMouse( Text:text, playerid, Float:OffsetX, Float:OffSetY );
Reply

pawn Код:
public OnAudioStreamForPlayerStart(playerid)
public OnAudioStreamForPlayerStop(playerid)
native SyncAudioStreamForplayer( playerid, fromplayerid);

For example we have two players on server.One player have song playing on 0:50 and other one's is at 0:20
We use these Sync native and sync players audio stream so they both now have playing song at 0:50
Reply

Код:
ShowVehicleOnMap(true/false);
for Hide/Show Vehicles on MiniMap (Radar)

for SPECIAL_ACTION_USECELLPHONE

if use SPECIAL_ACTION_USECELLPHONE show to player hud weapon image cellphone from file gta3.img -> cellphone.txt - > cellphoneicon
Reply

Very useful I think:

- Ability to kill timers without an id. I used to script for Ultima Online ( it uses C# ) and when you start a timer it has an OnTick() function and you can put inside it this.Stop() or Stop() and it would stop executing.

That would be very useful if could be implemented in SAMP.
Reply

Quote:
Originally Posted by clavador
Посмотреть сообщение
Very useful I think:

- Ability to kill timers without an id. I used to script for Ultima Online ( it uses C# ) and when you start a timer it has an OnTick() function and you can put inside it this.Stop() or Stop() and it would stop executing.

That would be very useful if could be implemented in SAMP.
In my point of view that's useless.


pawn Код:
TogglePlayerRadar(playerid, bool:toggle);
Reply

pawn Код:
SetRunningStyleForPlayer(playerid, RunningStyle);//1 or 2. 1 = Cj Run, 2 = Default.
Oh how I would love to see this added.
Reply

GetPlayerRes(playerid)

returns the players resolution setting
Reply

Add more/new characters. I think we got all from the game, why not making completely new ones?
Reply

Quote:
Originally Posted by willsuckformoney
Посмотреть сообщение
Add more/new characters. I think we got all from the game, why not making completely new ones?
Because; Kye wants to keep it San Andreas style, not turn it into a completly different game.
Reply

pawn Код:
OnPlayerWheelMouse(playerid, up, down);
A line of sight function?
Reply

Quote:
Originally Posted by DeathTone
Посмотреть сообщение
GetPlayerRes(playerid)

returns the players resolution setting
This is actually a great idea. Hate having to give textdraws a wide birth to chat due to people that use 1x2 resolution.
Reply

i would like to see, a water level system.

first of all, the function.

Код:
SetWaterLevel( level);
and a player itself:

Код:
SetPlayerWaterLevel( playerid, level );
example:

Код:
if (strcmp("/waterlevel", cmdtext, true, 11) == 0)
        {
        SetWaterLevel(20.0);
        }
   return 1;
}
and if with a admin system, example:

Код:
if (strcmp("/waterlevel", cmdtext, true, 11) == 0)
{
   if(IsPlayerConnected(playerid))
   {
     if(PlayerInfo[playerid][pAdmin] >= 2)
     {
        SetWaterLevel(20.0);
     }
     else
     {
       SendClientMessage(playerid, COLOR_RED, "You Can't Use this Command!");
     }
   }
   return 1;
}
with player itself example:

Код:
if (strcmp("/waterlevel", cmdtext, true, 11) == 0)
        {
        SetPlayerWaterLevel(20.0);
        }
   return 1;
}
admin example:

Код:
if (strcmp("/waterlevel", cmdtext, true, 11) == 0)
{
   if(IsPlayerConnected(playerid))
   {
     if(PlayerInfo[playerid][pAdmin] >= 2)
     {
        SetPlayerWaterLevel(20.0);
     }
     else
     {
       SendClientMessage(playerid, COLOR_RED, "You Can't Use this Command!");
     }
   }
   return 1;
}
Reply

Easy, useful, practical:

new native = SetVehicleID(vehicleid, VEHID);
Reply

Would be awesome to add this: forum.sa-mp.com/showthread.php?t=325248

Download in video description... Would be awesome if a boot could use this dog skin. Add!! ..
Reply

EditObject() to be used on objects attached to vehicles.
Reply

Quote:
Originally Posted by Ultrascipter
Посмотреть сообщение
Easy, useful, practical:

new native = SetVehicleID(vehicleid, VEHID);
Why..?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)