Raised This Month: $51 Target: $400
 12% 

I need a teacher...


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
SweatyBanana
BANNED
Join Date: Sep 2005
Location: LOL
Old 01-12-2006 , 22:25   I need a teacher...
Reply With Quote #1

Well anyway...you can guess what i'm going to ask...

I really need some good explination of PAWN...i really want to learn to code plugins (even simple ones) and I need someone, if they give me a guide to read, to explain what it all means, or go through it with me...please please please...I want to learn so bad...remember i tried a while back, but i plain suck.
SweatyBanana is offline
Send a message via AIM to SweatyBanana Send a message via Yahoo to SweatyBanana
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 01-12-2006 , 22:47  
Reply With Quote #2

http://forums.alliedmods.net/showthread.php?t=23119 rawr
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
SweatyBanana
BANNED
Join Date: Sep 2005
Location: LOL
Old 01-12-2006 , 22:47  
Reply With Quote #3

nobody wants to help?

and what the heck is up with the 1 holiday smiley still in there?
SweatyBanana is offline
Send a message via AIM to SweatyBanana Send a message via Yahoo to SweatyBanana
SweatyBanana
BANNED
Join Date: Sep 2005
Location: LOL
Old 01-12-2006 , 23:22  
Reply With Quote #4

Quote:
Originally Posted by v3x
http://forums.alliedmods.net/showthread.php?t=23119 rawr
the hell...there isnt even a link there...lol

any help?

See the smileys?:

SweatyBanana is offline
Send a message via AIM to SweatyBanana Send a message via Yahoo to SweatyBanana
Dirty DuMont
Member
Join Date: Jan 2006
Old 01-12-2006 , 23:52  
Reply With Quote #5

*BuMp* Sorry v3x...
Dirty DuMont is offline
Send a message via AIM to Dirty DuMont
SweatyBanana
BANNED
Join Date: Sep 2005
Location: LOL
Old 01-13-2006 , 00:00  
Reply With Quote #6

Which isnt up and running yet lol...and im not laughing at him...only with him..can someone tell me where the loose indentations are in this code?



Code:
// Player Unburyer, v0.5 // Originally by boadmin AKA ScriptyBoy // This plugin will allow anyone to unbury themselves in a server. // Use "amx_unbury", "say /unbury", or "say_team /unbury" // Thanks to MistaGee and v3x for help fixing my plugin... // And Thanks to Kensai for fixing the concmd to clcmd part.. // I know this plugin was a disaster, and I helped for some of it in the beginning. // I am Scriptyboys little bro, and i am not a very good scriptor either.. // I hope this can help alot of people and just wanted to post it up. // Thanks Lukaso for working on this and making the map check part work // Also the cvar works wonders. #include <amxmodx> #include <amxmisc> #include <fun> new unbury[33]; new mapname[64]; public plugin_init() {    register_plugin("UnburyMe","0.5","Scriptyboy, Kensai, SweatyBanana, & Lukaso");        get_mapname(mapname, 63);    register_clcmd("say /unbury", "cmd_unbury", 0);    register_concmd("amx_unbury", "cmd_unbury", 0);    register_concmd("say_team /unbury", "cmd_unbury", 0);    if(equal(mapname, "de_rats"))    {       register_cvar("amx_unbury_amount", "1");       register_logevent("round_start", 2, "0=World triggered", "1=Round_Start");    } } public round_start() {    new id    for(id = 0; id <= 32; id++)    {        unbury[id] = 0;    } } public cmd_unbury(id, level, cid) {    if(!cmd_access(id, level, cid, 0))    {       return PLUGIN_HANDLED;    }       else if(!is_user_alive(id))    {       client_print(id, print_chat, "you can use /unbury only, if you are alive")       return PLUGIN_HANDLED;    }       else if(unbury[id] >= get_cvar_num("amx_unbury_amount"))    {       client_print(id, print_chat, "you can use /unbury only %d time(s) a round", get_cvar_num("amx_unbury_amount"))       return PLUGIN_HANDLED;    }       else if(!equal(mapname, "de_rats2k4"))    {       client_print(id, print_chat, "you can use /unbury only on de_rats2k4")       return PLUGIN_HANDLED;    }    new origin[3];    get_user_origin(id, origin);    origin[2] += 50;    set_user_origin(id, origin);    unbury[id]++;    new name[32];    get_user_name(id, name, 31);    client_print(0, print_chat, "%s has been unburied", name);    return PLUGIN_HANDLED; }

Code:
/home/users/amxmodx/tmp3/textyrCE1D.sma(21) : warning 217: loose indentation
/home/users/amxmodx/tmp3/textyrCE1D.sma(22) : warning 217: loose indentation
SweatyBanana is offline
Send a message via AIM to SweatyBanana Send a message via Yahoo to SweatyBanana
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 01-13-2006 , 00:19  
Reply With Quote #7

Quote:
Originally Posted by Ðirty Ð
v3x meant this > http://ghw-amxx.com/site/ <
OH REALLY?

Changed due to ignorance.
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
uTg | bigpapajiggs
Senior Member
Join Date: Sep 2005
Location: Bellingham, WA
Old 01-13-2006 , 00:50  
Reply With Quote #8

I'll teach you what I know. Get ahold of me on AIM sometime.
__________________
What's my confidence level? I do crossword puzzles with a pen.
uTg | bigpapajiggs is offline
Send a message via AIM to uTg | bigpapajiggs Send a message via MSN to uTg | bigpapajiggs Send a message via Yahoo to uTg | bigpapajiggs
Lord_Destros
Veteran Member
Join Date: Jul 2004
Location: With stupid.
Old 01-13-2006 , 03:17  
Reply With Quote #9

lol, teach your fellow lords as well . especially if your familiar with hero mod . lol v3x where else did you post your link in your sig. you have 1420 souls. btw while checking amount of peeps why does this seem wrong

name location join date posts karma
SniperBeamer Old Europe 25 Jan 2004 699 1001323
__________________
Quote:
Originally Posted by Twilight Suzuka
Don't worry m'lord. The turtles day will come.
Lord_Destros is offline
Send a message via AIM to Lord_Destros
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 01-13-2006 , 03:57  
Reply With Quote #10

Quote:
Originally Posted by Lord_Destros
lol v3x where else did you post your link in your sig. you have 1420 souls.
At the *other* forums =)
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
Reply



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 11:48.


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