It only shows on my screen now.
BTW: it wouldnt show up my screen if _type wasnt allowed
PHP Code:
function onCreated() {
leapcontrol = this;
}
public function drawLeap(_type, positionx, positiony) {
triggerclient("weapon",this.name,"leap",_type,positionx,positiony);
}
//#CLIENTSIDE
function onActionClientSide()
{
if(params[0] == "leap")
putleaps(params[1], params[2], params[3]);
}