Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1.     if ( SERVER ) then
  2.    
  3.         hook.Add( "PlayerSay", "playersaywebsite", function( _p, _text, public )
  4.    
  5.             if ( _text == "!contentpack" ) then
  6.                 _p:ConCommand( "contentpack" );
  7.                 return "";
  8.                         end
  9.         end );
  10.    
  11.     else
  12.    
  13.         concommand.Add( "contentpack", function()
  14.             gui.OpenURL( "http://millenniumrp.com/" );
  15.         end );
  16.        
  17.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement