Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 10th, 2010 | Syntax: None | Size: 0.43 KB | Hits: 41 | Expires: Never
Copy text to clipboard
  1. stock GetClanName(playerid){new f[256];new fi[256];new Clan[256];new Clan2[256];new na[MAX_PLAYER_NAME];new nam[MAX_PLAYER_NAME];for(new i=0;i<MAX_PLAYERS;i++){GetPlayerName(playerid,na,sizeof(na));GetPlayerName(i,nam,sizeof(nam));format(f,sizeof(f),"HC/Users/%d.txt",GetPlayerOn(playerid));format(fi,sizeof(fi),"HC/Users/%d.txt",GetPlayerOn(i));Clan = dini_Get(f,"Clan");Clan2 = dini_Get(fi,"Clan");if(equal(Clan, Clan2)) return i;}return 1;}