CreateDynamicSphere problem - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: CreateDynamicSphere problem (
/showthread.php?tid=635507)
CreateDynamicSphere problem -
Whatname - 08.06.2017
For some reason when i use the command to create DynamicSphere i get SERVER:Unknown command.
and it happend only when i add CreateDynamicSphere when i remove CreateDynamicSphere and just sendclientmeesage the command works any idea why?
PHP код:
#include <a_samp>
#include <streamer>
#include <izcmd>
static s;
CMD:st(playerid, params[])
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
s = CreateDynamicSphere(x, y, z, 20);
SendClientMessage(playerid, 0xFFFF00FF, "Area created.");
return 1;
}
Re: CreateDynamicSphere problem -
Abagail - 08.06.2017
It's likely that the streamer plugin hasn't loaded, which could be for a number of reasons:
- It's not in the plugins line in server.cfg.
- The .dll is not in the "plugins" folder.
- You're missing system files preventing the plugin from running.
Re: CreateDynamicSphere problem -
Whatname - 08.06.2017
Quote:
Originally Posted by Abagail
It's likely that the streamer plugin hasn't loaded, which could be for a number of reasons: - It's not in the plugins line in server.cfg.
- The .dll is not in the "plugins" folder.
- You're missing system files preventing the plugin from running.
|
ohh thank i forgot to load streamer ;p