Helpy

Započeo Trotinetaa_
20. Avg. 2023. Zaključano
422
pregleda
8
postova
Antonioftww
5
Shot Caller
20. Avg. 2023.
Iz koje god skripte ubacim dobjem jebeni errore koje ne znam fixat pomoc? ( admin ic chat u pitanju )

https://imgur.com/a/mlJF723

cofilinko
4
Enforcer
20. Avg. 2023.
tony_ wrote on August 20, 2023, 3:02 pm:
Iz koje god skripte ubacim dobjem jebeni errore koje ne znam fixat pomoc? ( admin ic chat u pitanju )

https://imgur.com/a/mlJF723

Pa nemas definisanu funkciju e_RadiusMSG ?
Pretpostavljam da ti je to za radius u kome se poruka salje. Evo ti ovo

forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);
public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)
{
if(IsPlayerConnected(playerid))
{
new Float:posx, Float:posy, Float:posz;
new Float:oldposx, Float:oldposy, Float:oldposz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetPlayerPos(playerid, oldposx, oldposy, oldposz);
for(new i = 0; i <= GetPlayerPoolSize(); i++)
{
  if(IsPlayerConnected(i))
{
if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))
{
GetPlayerPos(i, posx, posy, posz);
tempposx = (oldposx -posx);
tempposy = (oldposy -posy);
tempposz = (oldposz -posz);
}
if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16)))
{
SendClientMessage(i, col1, string);
}
else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8)))
{
SendClientMessage(i, col2, string);
}
else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4)))
{
SendClientMessage(i, col3, string);
}
else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2)))
{
SendClientMessage(i, col4, string);
}
else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
{
    SendClientMessage(i, col5, string);
}
}
}
}
return true;
}

Primer koriscenja

new string;
format(string, sizeof(string), "%s uzima meso i stavlja u korpu.",GetName(playerid));
ProxDetector(10.0, playerid, string, PURPLE1,PURPLE2,PURPLE3,PURPLE4,PURPLE5);
Antonioftww
5
Shot Caller
20. Avg. 2023.
cofilinko wrote on August 20, 2023, 3:08 pm:
Pa nemas definisanu funkciju e_RadiusMSG ?
Pretpostavljam da ti je to za radius u kome se poruka salje. Evo ti ovo

forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);
public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)
{
if(IsPlayerConnected(playerid))
{
new Float:posx, Float:posy, Float:posz;
new Float:oldposx, Float:oldposy, Float:oldposz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetPlayerPos(playerid, oldposx, oldposy, oldposz);
for(new i = 0; i <= GetPlayerPoolSize(); i++)
{
  if(IsPlayerConnected(i))
{
if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))
{
GetPlayerPos(i, posx, posy, posz);
tempposx = (oldposx -posx);
tempposy = (oldposy -posy);
tempposz = (oldposz -posz);
}
if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16)))
{
SendClientMessage(i, col1, string);
}
else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8)))
{
SendClientMessage(i, col2, string);
}
else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4)))
{
SendClientMessage(i, col3, string);
}
else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2)))
{
SendClientMessage(i, col4, string);
}
else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
{
    SendClientMessage(i, col5, string);
}
}
}
}
return true;
}

Primer koriscenja

new string;
format(string, sizeof(string), "%s uzima meso i stavlja u korpu.",GetName(playerid));
ProxDetector(10.0, playerid, string, PURPLE1,PURPLE2,PURPLE3,PURPLE4,PURPLE5);

Ubacio sam to šta si mi poslo i opet isto. https://imgur.com/a/WPhGnFv , jel imaš a mi das cjeli ispis coda (( admin %s ... itd

Wizzard1
4
Shot Caller
20. Avg. 2023.
format(string, sizeof(string), ""BOJA"upisi sta ti treba");
e_RadiusMSG(20.0, playerid, -1, string);

stock e_RadiusMSG(Float:RadiusBa, playerid, color, const string[])
{
    new Float:PosX, Float:PosY, Float:PosZ;
    GetPlayerPos(playerid, PosX, PosY, PosZ);
for(new i = 0; i <= GetPlayerPoolSize(); i++)
{
if(IsPlayerInRangeOfPoint(i, RadiusBa, PosX, PosY, PosZ)) SCM(i, color, string);
}
    return 0;
}
realnaith
5
Crime Lord
21. Avg. 2023.
Formular ?
Radovic
3
Hustler
24. Avg. 2023.
Ako nisi resio javi se .radovic discord.
stevich
6
Kingpin
25. Avg. 2023.
kompajler ti sve kaze ti ako nemas 2grama u mozak onda sta da ti radim
Frozen_Capone
5
Crime Lord
31. Avg. 2023.
Neaktivno, lock.

Morate biti prijavljeni da biste odgovorili na ovu temu.

Prijava

© 2026 SmartShark. All rights reserved.

Powered by Momentum|v2026.3.001 Alpha