Lavalair club id.1

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Lavalair club id.1

    Anyone can help me on how to hide club id.1 (staff club) to club list and member? Lavalair script.

    #2
    Bro they still can see it in the address bar but here is a code for you to try.
    look for else if($action=="gocl") in the index.php file
    replace
    PHP Code:
    echo "Club ID: <b>$clid</b><br/>"
    with this

    PHP Code:
    if($clid=='1')
            {
    echo 
    "<br/>";
     }else{
    echo 
    "Club ID: <b>$clid</b><br/>";


    WapCHAT Forum Currenltly changing over to xhtml

    My Dowloads Site

    Comment


      #3
      Code:
      if($item[0]==1){
      if(ismod(getuid_sid($sid))){
      $lnk = "<a href=\"index.php?action=gocl&amp;clid=1]\">$item[1]($mems[0])</a> <small>Owner: <a href=\"index.php?action=viewuser&amp;who=$item[2]\">".getnick_uid($item[2])."</a></small>";
      }
      }else{
      $lnk = "<a href=\"index.php?action=gocl&amp;clid=$item[0]\">$item[1]($mems[0])</a> <small>Owner: <a href=\"index.php?action=viewuser&amp;who=$item[2]\">".getnick_uid($item[2])."</a></small>";
      }

      Comment

      Working...
      X