Re: Dynamic organizations -
eng62ine - 18.11.2013
Great system, I added a firefighter system to it and it works great
Re: Dynamic organizations -
twerko13 - 07.01.2014
When is the v3 coming?
Re: Dynamic organizations -
shamtron - 21.01.2014
Please Update Link
Re: Dynamic organizations -
iThePunisher - 22.01.2014
lol what is the cmd to create organization/clan/faction
i type /createorganization and it says unknown cmds
Re: Dynamic organizations -
Diesel5 - 23.01.2014
Very cool!
Re: Dynamic organizations -
Dziugsas - 27.04.2014
Maybe y_ini version?Cause i'm trying to convert ,but i can't ;/
Re: Dynamic organizations -
IceBilizard - 27.04.2014
I created dynamic organization script with using this script now i can make organizations in game
Re: Dynamic organizations -
antonisrodos94 - 27.04.2014
Good FS bro!!!
Re: Dynamic organizations -
Naresh - 20.05.2014
i need help CreateOrganization(RS Hual[32], 217, Float:-79.16,Float:-1135.65,Float:1.07, weapon1,ammo1,weapon2,ammo2,weapon3,ammo3)
i get error -
C:\Users\Ravi\Desktop\Org.pwn(125) : error 017: undefined symbol "RS"
C:\Users\Ravi\Desktop\Org.pwn(125) : error 017: undefined symbol "Hual"
C:\Users\Ravi\Desktop\Org.pwn(125) : warning 215: expression has no effect
C:\Users\Ravi\Desktop\Org.pwn(125) : error 001: expected token: ";", but found "]"
C:\Users\Ravi\Desktop\Org.pwn(125) : fatal error 107: too many error messages on one line
TY nice Org Fs
Re: Dynamic organizations -
Naresh - 22.05.2014
Srry For +Post
i fixed the above stuff
i need help now with this
i have PPC_Trucking gm it has anti-money
i cant use the code RewardPlayer too errors
if (CollectedWage[playerid] <= 0) return SendClientMessage(playerid, COLOR_RED, "You don't have any wage earned yet!");
new string[80];
format(string,sizeof(string),"You have collected $%d", CollectedWage[playerid]);
SendClientMessage(playerid, COLOR_YELLOW, string);
RewardPlayer(playerid, CollectedWage[playerid]);
CollectedWage[playerid] = 0;
SavePlayerOrgInfo(playerid);
plz help.
Re: Dynamic organizations -
Iillminetor1 - 22.05.2014
WOW! looks good!
Re: Dynamic organizations -
PainGiver - 23.05.2014
How to create orgs?
Re: Dynamic organizations -
PainGiver - 23.05.2014
zddf
Re: Dynamic organizations -
yasin01hard - 02.08.2014
How do we establish the organization? :/
Re: Dynamic organizations -
yasin01hard - 05.08.2014
I can not make the organization man
Re: Dynamic organizations -
MaxTuner - 06.08.2014
Thanks man! Awesome! I will soon start to write my first GM and I will try to implement this!
Re: Dynamic organizations -
Iklesos - 23.12.2014
Whole package link is down
Re: Dynamic organizations -
Jochemd - 27.12.2014
Quote:
Originally Posted by Iklesos
Whole package link is down
|
Just use Pastebin and find the correct files belonging to it. It's not that hard at all.
Re: Dynamic organizations -
Sensation - 27.12.2014
Hi guys! I would like if player's rank is Leader can use Isleader commands. example: if player rank is "Leader" can use kickmember command. How Can I make this system.
Sorry for my bad english. I'm not english people.
Please help me..
Re: Dynamic organizations -
Jakku - 27.12.2014
Quote:
Originally Posted by Sensation
Hi guys! I would like if player's rank is Leader can use Isleader commands. example: if player rank is "Leader" can use kickmember command. How Can I make this system.
Sorry for my bad english. I'm not english people.
Please help me..
|
Here's alternative IsLeader- stock for you if you want it to work like that:
pawn Код:
stock IsLeader(playerid)
{
if (strcmp(PlayerRank[playerid], "Leader", true) == 0) return 1;
return 0;
}