GTA Közösség - A magyar GTA fórum

San Andreas Multiplayer (SA-MP) => SA-MP: Szerverfejlesztés => Segítségkérés => A témát indította: viktorka1 - 2011. november 04. - 17:32:58

Cím: afk
Írta: viktorka1 - 2011. november 04. - 17:32:58
Hellosztok olyan afk-rendszert szeretnék tõletek amiben az alábbiak vannak benn:
Ha elmegy AFK-ba valaki akkor írja ki a feje fõlé sárga betûvel hogy \"AFK-ba vagyok\" asszem 3d textdrawwal !
Ha beirja az illetõ ne tudjon mozogni!
Ha beirja az illetõ ne tudják megölni tehát a míg ki nem lép az afk ból addig GOD-élete legyen !
Legyen a striptnek afk-ki vagy -off kikapcsoló része !
És annyi ha afk t beirja akkor mindenkinek írja a rendszer hogy ..... -elment afk ba !
Ja igen és ha visszajött annyit hogy .....-játékos visszajött afk-ból !
Ha megoldható akkor megkérnélek benneteket csináljatok eggyet nekem mert amit én találtam interneten ebbõl valamelkyike nem volt benne !
Köszönöm ! :)
Üdv:Viktorka1
Cím: afk
Írta: JackBronson - 2011. november 04. - 18:45:25
Ha kerestél volna  a fórumon találsz annyi ilyen afk rendzsert,h az csak na.
Kapásból:
http://sampforum.hu/index.php?topic=16293.0
http://sampforum.hu/index.php?topic=11139.0
http://sampforum.hu/index.php?topic=10522.0
http://sampforum.hu/index.php?topic=8209.0
http://sampforum.hu/index.php?topic=8400.0
http://sampforum.hu/index.php?topic=11020.0
http://sampforum.hu/index.php?topic=13840.msg159157#msg159157
http://sampforum.hu/index.php?topic=14063.msg161328#msg161328
http://sampforum.hu/index.php?topic=14871.msg170097#msg170097
http://sampforum.hu/index.php?topic=12953.msg149323#msg149323
http://sampforum.hu/index.php?topic=8814.msg101241#msg101241
Jó ezek nem pontosan olyanok amit akarsz de old meg ebbõl..
És még sorolhatnám...XD
Cím: afk
Írta: lusta19 - 2011. november 04. - 20:14:54
#include <a_samp>
#define yellow 0xFFFF00AA
#define COLOR_YELLOW 0xFFFF00AA
new Text3D:label[MAX_PLAYERS];
 
public OnFilterScriptInit()
{
print(\"\\n--------------------------------------\");
print(\" Afk SYSTEM\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
   if(strcmp(\"/afk\", cmdtext, true) == 0)
   {
   SendClientMessage(playerid, COLOR_YELLOW, \"You are now AFK, type /back to move again!\");
   TogglePlayerControllable(playerid,0);
   label[playerid] = Create3DTextLabel(\"AFK\",yellow,30.0,40.0,50.0,40.0,0);
   Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
   new string3[70];
   new name[MAX_PLAYER_NAME];
   GetPlayerName(playerid, name, sizeof(name));
   format(string3, sizeof(string3), \"%s is now Away from the keyboard!\", name);
   SendClientMessageToAll(COLOR_YELLOW, string3);
   }
   if(strcmp(\"/back\", cmdtext, true) == 0)
   {
   SendClientMessage(playerid, COLOR_YELLOW, \"Welcome back!\");
   TogglePlayerControllable(playerid,1);
   new string3[70];
   new name[MAX_PLAYER_NAME];
   GetPlayerName(playerid, name, sizeof(name));
   format(string3, sizeof(string3), \"%s is now Back!\", name);
   SendClientMessageToAll(COLOR_YELLOW, string3);
   Delete3DTextLabel(Text3D:label[playerid]);
   return 1;
   }
   return 0;
}

 
Tessék átírod magyarra és jó is  ;)
Cím: afk
Írta: viktorka1 - 2011. november 09. - 20:03:47
Köszönöm szépen megoldottam ! nyomtam 1 lájkot lusta és
ZÁROK!