Raised This Month: $ Target: $400
 0% 

Warning 213: tag mismatch?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Extremeone
Senior Member
Join Date: Jan 2005
Old 02-11-2005 , 09:19   Warning 213: tag mismatch?
Reply With Quote #1

I need some help with this
i get this error:
\grab.sma<95> : warning 213: tag mismatch
Code:
/* AMX Mod script. * *  Jedi Force Grab *  by SpaceDude *  email: <a href="mailto:[email protected]">[email protected]</a> *  MSN: <a href="mailto:[email protected]">[email protected]</a> *  ICQ: 1615758 *  IRC: Quakenet, nickname: "SpaceDude" * *  Description: * *  Another plugin for those admins who like to abuse their players and have a little fun. *  With this plugin you can literally pick players up, drag them around in the air and then *  depending on your mood either slam them into the ground or let them go free. * *  In order to use this plugin you will need the xtrafun module which can be found here: * *  <a href="http://amxmod.net/forums/viewtopic.php?t=10714" target="_blank" rel="nofollow noopener">http://amxmod.net/forums/viewtopic.php?t=10714</a> * *  Server Side Cvars: * *    sv_grabforce - sets the amount of force used when grabbing players, default is 8 * *  Client Side Commands: * *    +grab - bind a key to +grab like this: bind <key> +grab, once you have done that *            hold the key down and look at someone. Once you see their ID pop-up on *            the screen you will be able to drag them around, just look in the direction *            you want them to go and they will be dragged there. requires level ADMIN_SLAY. * *    grab_toggle - works in the same way as +grab except it is a toggle press once to grab *                  press a second time to release. * * *  Revision History: * * *   v1.1 - Added a red glow *        - Added a grab_toggle as an alternative to +grab *        - Added notify messages *        - Made it possible to grab people while dead (works best in Free View mode) * *   v1.0 - Initial Release */ #include <amxmodx> #include <fun> #include <engine> new grabbed[33] new grablength[33] new bool:grabmodeon[33] new velocity_multiplier public grabtask(parm[]) {     new id = parm[0]     new targetid, body     if (!grabbed[id])     {         get_user_aiming(id, targetid, body)         if (targetid)         {             set_grabbed(id, targetid)         }     }     if (grabbed[id])     {         new origin[3], look[3], direction[3], moveto[3], grabbedorigin[3], velocity[3], length         if (!is_user_alive(grabbed[id]))         {             release(id)             return         }         get_user_origin(id, origin, 1)         get_user_origin(id, look, 3)         get_user_origin(grabbed[id], grabbedorigin)         direction[0]=look[0]-origin[0]         direction[1]=look[1]-origin[1]         direction[2]=look[2]-origin[2]         length = get_distance(look,origin)         if (!length) length=1               // avoid division by 0         moveto[0]=origin[0]+direction[0]*grablength[id]/length         moveto[1]=origin[1]+direction[1]*grablength[id]/length         moveto[2]=origin[2]+direction[2]*grablength[id]/length         velocity[0]=(moveto[0]-grabbedorigin[0])*velocity_multiplier         velocity[1]=(moveto[1]-grabbedorigin[1])*velocity_multiplier         velocity[2]=(moveto[2]-grabbedorigin[2])*velocity_multiplier         set_user_velocity(grabbed[id], velocity)     } } public grab_toggle(id) {     if (grabmodeon[id])         release(id)     else         grab(id)     return PLUGIN_HANDLED } public grab(id) {     if (!(get_user_flags(id)&ADMIN_SLAY))     {         client_print(id,print_notify,"[AMX] You have no access to that command")         return PLUGIN_HANDLED     }     if (!grabmodeon[id])     {         new targetid, body         new parm[1]         parm[0] = id         velocity_multiplier = get_cvar_num("sv_grabforce")         grabmodeon[id]=true         set_task(0.1, "grabtask", 100+id, parm, 1, "b")         get_user_aiming(id, targetid, body)         if (targetid)         {             set_grabbed(id, targetid)         }         else         {             client_print(id,print_notify,"[AMX] Searching for a target")         }     }     return PLUGIN_HANDLED } public release(id) {     if (!(get_user_flags(id)&ADMIN_SLAY))     {         client_print(id,print_notify,"[AMX] You have no access to that command")         return PLUGIN_HANDLED     }     if (grabmodeon[id])     {         grabmodeon[id]=false         if (grabbed[id])         {             new targname[32]             set_user_gravity(grabbed[id])             set_user_rendering(grabbed[id])             get_user_name(grabbed[id],targname,31)             client_print(id,print_notify,"[AMX] You have released %s", targname)         }         else         {             client_print(id,print_notify,"[AMX] No target found")         }         grabbed[id]=0         remove_task(100+id)     }     return PLUGIN_HANDLED } public spec_event(id) {     new targetid = read_data(2)     if (targetid < 1 || targetid > 32)         return PLUGIN_CONTINUE     if (grabmodeon[id] && !grabbed[id])     {         set_grabbed(id, targetid)     }     return PLUGIN_CONTINUE } public set_grabbed(id, targetid) {     new origin1[3], origin2[3], targname[32]     get_user_origin(id, origin1)     get_user_origin(targetid, origin2)     grabbed[id]=targetid     grablength[id]=get_distance(origin1,origin2)     set_user_gravity(targetid,0.001)     set_user_rendering(targetid,kRenderFxGlowShell,50,0,0, kRenderNormal, 16)     get_user_name(targetid,targname,31)     client_print(id,print_notify,"[AMX] You have grabbed onto %s", targname) } public plugin_init() {     register_plugin("Jedi Force Grab","1.1","SpaceDude")     register_cvar("sv_grabforce","8")     register_clcmd("grab_toggle","grab_toggle",ADMIN_SLAY,"press once to grab and again to release")     register_clcmd("+grab","grab",ADMIN_SLAY,"bind a key to +grab")     register_clcmd("-grab","release",ADMIN_SLAY)     register_event("StatusValue","spec_event","be","1=2") }
Extremeone is offline
More
Member
Join Date: Nov 2004
Location: Internet
Old 02-11-2005 , 09:45  
Reply With Quote #2

its only a warning, not an error.

change:
Code:
set_user_velocity(grabbed[id], velocity)
with:
Code:
new Float:f_velocity[3] IVecFVec(velocity, f_velocity) set_user_velocity(grabbed[id], f_velocity)

than the warning will disappear
More is offline
Extremeone
Senior Member
Join Date: Jan 2005
Old 02-11-2005 , 09:49  
Reply With Quote #3

Thanks
Extremeone is offline
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 19:16.


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