Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----------Befehl--------
- if(strcmp(cmdtext,"/arbeitsamt",true) ==0)
- {
- if(PlayerToPoint(10.0,playerid,364.7387,173.9681,1008.3893))
- {
- ShowPlayerDialog(playerid,stadtmenue,DIALOG_STYLE_LIST,"Arbeitsamt","Müllman\nGeldtransporterfahrer\nKuendigen","Weiter","Abbrechen");
- }
- else
- {
- SendClientMessage(playerid,ROT,"Du bist nicht in der Stadthalle.");
- }
- return 1;
- }
- -------------Dialog-----------
- if(dialogid == stadtmenue)
- {
- if(!response)
- {
- }
- if(response == 1)
- {
- if(hateinjob(playerid,1))return SendClientMessage(playerid,ROT,"Du hast schon ein job");
- if(listitem == 0)
- {
- SendClientMessage(playerid,ROT,"Du hast Müllman gewählt");
- pInfo[playerid][Job] = 1;
- }
- if(listitem == 1)
- {
- SendClientMessage(playerid,ROT,"Du hast Geldtransporterfahrer gewählt");
- pInfo[playerid][Job] = 2;
- }
- if(listitem ==2)
- {
- SendClientMessage(playerid,ROT,"Du hast deinen Job gekündigt !");
- pInfo[playerid][Job] = 0;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement