Raised This Month: $ Target: $400
 0% 

{Off Topic}: What is a good source for learning small?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
StealthMode
Junior Member
Join Date: Jun 2004
Location: East Side, US
Old 06-18-2004 , 20:14   {Off Topic}: What is a good source for learning small?
Reply With Quote #1



I am tired of sitting on my butt and just editing plugins, etc. I want to learn the language that is used, so I can get a more thorough understanding of it, and possibly be of some use to the community.

Any and all help in this matter is greatly appreciated.
StealthMode is offline
Send a message via ICQ to StealthMode Send a message via AIM to StealthMode Send a message via MSN to StealthMode Send a message via Yahoo to StealthMode
kingpin
Veteran Member
Join Date: Apr 2004
Location: kpsforum.com
Old 06-18-2004 , 21:02  
Reply With Quote #2

this question gets answered every week try the search feature once in a while.
__________________
kingpin is offline
Send a message via ICQ to kingpin Send a message via AIM to kingpin Send a message via MSN to kingpin Send a message via Yahoo to kingpin Send a message via Skype™ to kingpin
Peli
Veteran Member
Join Date: Mar 2004
Location: San Diego, CA
Old 06-18-2004 , 21:11  
Reply With Quote #3

Search : Tutorial , and you'll find a lot of stuff.
Peli is offline
Send a message via MSN to Peli
StealthMode
Junior Member
Join Date: Jun 2004
Location: East Side, US
Old 06-19-2004 , 00:00  
Reply With Quote #4

Sorry for my ignorance. I should have thought of that since I point it out to people on the steam forums so much. Again my apologies.
StealthMode is offline
Send a message via ICQ to StealthMode Send a message via AIM to StealthMode Send a message via MSN to StealthMode Send a message via Yahoo to StealthMode
Peli
Veteran Member
Join Date: Mar 2004
Location: San Diego, CA
Old 06-19-2004 , 00:49  
Reply With Quote #5

No problem.
Peli is offline
Send a message via MSN to Peli
Dygear
SourceMod Donor
Join Date: Apr 2004
Location: Levittown, NY
Old 06-19-2004 , 22:42  
Reply With Quote #6

By looking at code.

Code:
/******************************************************************************** * Plugin name: Log stuff * Made by: Dygear * Modules required: Engine * Warranties : This file is provided as is (no warranties). ********************************************************************************/ //These are include files, they take informaion from // the include forlder and to find the syntax of that command. // #include <%name%> will read from %name%.inc. For example, // if you include amxmodx then it will read from amxmodx.inc #include <amxmodx> #include <engine> public plugin_init() {   //Function is called just after server activation.   // This only registers the plugin with the server.   register_plugin("ServerUpTime","0.6a","Dygear") } public client_connect(id) {   //This is called when the client connects.   // This is going to log : Username and authid also   // get the Hour Minute and Second that the client connects.   new dyname[32], dyauthid[32], dyhours[6], dymins[6], dysecs[6]   get_user_name(id,dyname,31)   get_user_authid(id,dyauthid,31)   get_time("%H",dyhours,5)   get_time("%M",dymins,5)   get_time("%S",dysecs,5)   log_amx("Client : %s(%s) Connected on %H:%M:%S",dyname,dyauthid,dyhours,dymins,dysecs)   return PLUGIN_HANDLED } public plugin_end() {   //Function called before plugin unloading (server deactivation)   // The float dy_time get the time the server has been up SSS.SSSS   // This will not log the time if the server crashes.   new Float:dy_time = halflife_time();   log_amx("Server ended at : %f", dy_time);   return PLUGIN_HANDLED }
__________________
Dygear is offline
Send a message via AIM to Dygear Send a message via MSN to Dygear Send a message via Skype™ to Dygear
Peli
Veteran Member
Join Date: Mar 2004
Location: San Diego, CA
Old 06-19-2004 , 22:46  
Reply With Quote #7

Very nice Dygear , that will help.
Peli is offline
Send a message via MSN to Peli
Dygear
SourceMod Donor
Join Date: Apr 2004
Location: Levittown, NY
Old 06-29-2004 , 22:47  
Reply With Quote #8

Yes I am a noob at scripting but I am very good at explaining stuff. .
__________________
Dygear is offline
Send a message via AIM to Dygear Send a message via MSN to Dygear Send a message via Skype™ to Dygear
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 14:48.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode