[Include] [INC] HStreamer 0.5
#1

Finally releasing my Streamer made a year ago. I don't speak very good english, so just a little info: This Streamer presents Object, Pickup and Vehicle streamer in one (divided in 3 includes).

USAGE: First put up in your GameMode this -
If you want to use JUST a Pickup streamer:
Code:
#include <HStream_pickups>
If you want to use JUST a Vehicle streamer:
Code:
#include <HStream_vehicles>
If you want to use JUST a Object streamer:
Code:
#include <HStream_objects>
Second put in public OnGameModeInit() this:
Code:
UseObjectStreamer()
(and change the name of streamer that you need)

And after that - use it with functions AddStreamObject, AddStreamPickup and AddStreamVehicle...

DOWNLOAD:

Version 0.5
Reply
#2

Nice work.
Reply
#3

Nice, there are like 4 good streamers for now, I hope this one makes it 5.
Reply
#4

Your source for the .amx's are missing!
Reply
#5

Little mistake in
Quote:

#include <HStream_vehicles>
warning 203: symbol is never used: "Color2"

Your code:
pawn Code:
stock AddStreamVehicle(model,Float:X,Float:Y,Float:Z,Float:Angle,Color1,Color2)
{
     VehModel[VehID] = model; VehCol1[VehID] = Color1; VehCol2[VehID] = Color1;
    vX[VehID] = Float:X; vY[VehID] = Float:Y; vZ[VehID] = Float:Z; vAng[VehID] = Float:Angle;
    vViewDist[VehID] = 50; VehID += 1;
    return VehID-1;
}
It should be VehCol2[VehID] = Color2:
pawn Code:
stock AddStreamVehicle(model,Float:X,Float:Y,Float:Z,Float:Angle,Color1,Color2)
{
     VehModel[VehID] = model; VehCol1[VehID] = Color1; VehCol2[VehID] = Color2;
    vX[VehID] = Float:X; vY[VehID] = Float:Y; vZ[VehID] = Float:Z; vAng[VehID] = Float:Angle;
    vViewDist[VehID] = 50; VehID += 1;
    return VehID-1;
}
Reply
#6

cool... need more streamer releases on here.

Off Topic: Hey, only i can have a homer simpson avatar xD
Reply
#7

Quote:
Originally Posted by Seif_ [adream-rp.com
]
Quote:
Originally Posted by [SU
BP13 ]
Your source for the .amx's are missing!
It's an include, so it doesn't require any .pwn nor .amx.
its includes and .amx's in the download
Reply
#8

Another link please! :P
Reply
#9

Good Job ,homerman
Reply
#10

Lol are you serious ? XD Only 9 reply's But the link is dead
Reply
#11

Nice work
Edit:fix the link
Reply
#12

download not worked please fix it
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)