Thread: RC PMs
View Single Post
  #15  
Old 11-17-2007, 09:02 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Added a way for adding your own menu entries to the scripted player list, some example on Zone:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  (
"-Playerlist").addCustomMenuEntry(1000,"Kick");
}

function 
PlayerList_Menu.onSelect(entryid,text) {
  
temp.pl = ("-Playerlist").menuplayers[0];
  switch (
entryid) {
    case 
1000: {
        
triggeraction(0,0,"serverteamchat","kick " temp.pl.account);
        break;
      }
  }

Reply With Quote