Posts: 23
Threads: 1
Joined: May 2009
Reputation:
0
Hi everyone, I use the underworld script. But I noticed some things i really don't like:
Players need a _ in their name, like Dr_Death
You can't pm people
/arrest doesn't work, when i'm at the jails in the lvpd it says I need to be near the jails. Might this be an interior problem, since the godfather uses the one from los santos and this script is obviously a changed godfather script
thanks
Posts: 23
Threads: 1
Joined: May 2009
Reputation:
0
Okay, i got the arrest thing fixed... now i need the _ names and the private message thing.
sorry for triple post
Posts: 314
Threads: 33
Joined: Apr 2009
Reputation:
0
Just remove the "_" checker from OnPlayerConnect and youre done.
Posts: 23
Threads: 1
Joined: May 2009
Reputation:
0
I also noticed that /nameoff doesn't work
}
if(strcmp(cmdtext, "/nameoff", true) == 0)
{
if (PlayerInfo[playerid][pRank] >= 4 || PlayerInfo[playerid][pMember] == 8 || PlayerInfo[playerid][pLeader] == 8 )
{
for(new a=0; a<MAX_PLAYERS; a++)
{
ShowPlayerNameTagForPlayer(playerid, a, false);
}
SendClientMessage(playerid,COLOR_YELLOW,"[INFORMATION] Your name tag has been hidden.");
PlayerPlaySound(playerid, 1132, 0.0, 0.0, 0.0);
return 1;
}
}
if(strcmp(cmdtext, "/nameon", true) == 0)
{
if (PlayerInfo[playerid][pRank] >= 4 || PlayerInfo[playerid][pMember] == 8 || PlayerInfo[playerid][pLeader] == 8 )
{
for(new a=0; a<MAX_PLAYERS; a++)
{
ShowPlayerNameTagForPlayer(playerid, a, true);
}
SendClientMessage(playerid,COLOR_YELLOW,"[INFORMATION] Your name tag is now visible.");
PlayerPlaySound(playerid, 1132, 0.0, 0.0, 0.0);
return 1;
}
I tried to find it but i failed