AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   need help with plugin (https://forums.alliedmods.net/showthread.php?t=11935)

Zidd 04-01-2005 09:43

need help with plugin
 
can someone help me with this plugin its my first attempt at a plugin im getting compile errors when i try to compile it
Code:
//Vampire Mod //By Zidd //A Version Half-life engine version of an unreal tournament mutator #include <amxmodx> #include <amxmisc> #include <fun> public vampire (id) {         new makekill (get_user_frags)     new health (get_user_health)         if (health=1) {     client_print (1,print_center,"You Thirst For Blood Go Get Some Kills For More HP!")     set_task (0.5,"vampire",id)     return PLUGIN_HANDLED     }     if (health<=2) {         set_user_health (health -1)         set_task (0.5,"vampire",id)         return PLUGIN_HANDLED             }     if (makekill +1) {         set_user_health (health +10)         client_print (1,print_center,"You Get 10HP For The Kill You Just Made")         set_task (0.5,"vampire",id)         return PLUGIN_HANDLED             }       } public plugin_init {     register_plugin("Vampire Mode", "0.01", "Zidd")     register_clcmd("amx_vampire", "vampire", " : toggles Vampire mode"     }

Zidd 04-01-2005 16:55

no help at all? :(

stigma 04-01-2005 17:14

What you wrote:

Code:
    new makekill (get_user_frags)     new health (get_user_health)


I suggest you use this:

Code:
    new makekill[32]     get_user_frags(id,makekill,31)     new health[32]     get_user_health(id,health,31)

Try that, im not sure if it works, but try at least ;)

Zidd 04-01-2005 17:19

well im new at this and im not really shall i say "good at" coding and there really is a lack of tutorials around that i can find anyways

pendragon 04-01-2005 21:44

Quote:

Originally Posted by Zidd
well im new at this and im not really shall i say "good at" coding and there really is a lack of tutorials around that i can find anyways

Theres no need to defend urself. No one attacked you an the only response so far is actual help - so i dont see why the need for a defensive response.

at any rate - looks like a fun plugin - good luck and keep on truckin'!


All times are GMT -4. The time now is 09:59.

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