Hopefully someone can help with a problem ?
#1

Код:
new gGangZone[255];
new gGangZoneCount;

stock AddGangZone(Float:min_x, Float:min_y, Float:max_x, Float:max_y) {
  gGangZoneCount++;
  gGangZone[gGangZoneCount] = GangZoneCreate(min_x, min_y, max_x, max_y);
}
This is near the top of my script,when i change AddGangZone throughout my script to Zone_Add for it to work with YSI i get the error
Код:
error 021: symbol already defined: "Zone_Add"
Becuase it is built into the #include <YSI> but i need the
Код:
new gGangZone[255];
new gGangZoneCount;

stock AddGangZone(Float:min_x, Float:min_y, Float:max_x, Float:max_y) {
  gGangZoneCount++;
  gGangZone[gGangZoneCount] = GangZoneCreate(min_x, min_y, max_x, max_y);
}
for my script to work,any idea on how to get around thus?
Reply


Messages In This Thread
Hopefully someone can help with a problem ? - by Mr_Finnigan - 11.06.2009, 19:26
Re: Hopefully someone can help with a problem ? - by Correlli - 11.06.2009, 19:39
Re: Hopefully someone can help with a problem ? - by Mr_Finnigan - 11.06.2009, 19:40
Re: Hopefully someone can help with a problem ? - by Correlli - 11.06.2009, 19:50
Re: Hopefully someone can help with a problem ? - by Mr_Finnigan - 11.06.2009, 20:04
Re: Hopefully someone can help with a problem ? - by samgreen - 11.06.2009, 20:26

Forum Jump:


Users browsing this thread: 2 Guest(s)