• Welcome to Vice City Multiplayer.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - BIG[H]

#1
mIRC/pawn Scripting / i got Stucked
April 28, 2011, 12:22:28 PM
Quote*:***\******\*****\****HLDS.pwn(692) : warning 213: tag mismatch
*:***\******\*****\****HLDS.pwn(693) : warning 213: tag mismatch
*:***\******\*****\****HLDS.pwn(695) : warning 213: tag mismatch
*:***\******\*****\****HLDS.pwn(866) : warning 213: tag mismatch
*:***\******\*****\****HLDS.pwn(904) : warning 213: tag mismatch

Pawn compiler 3.0.3367         Copyright (c) 1997-2005, ITB CompuPhase


5 Warnings.

quote that Gives this Is:
Lines (692 , 693 , 695)
for 3 warnings:
Quote
else if (strcmp(cmd, "maplist", true) == 0) {
         
      new conty[1024];
      new filepathz[256];
         format(filepathz,sizeof(filepathz),"/MiniWar/Mapslist.ini");
    if(fexist(filepathz)) {
      new fileoo;
692      fileoo = fopen(filepathz,io_read);
693      fread(fileoo,conty,1204);
            SendClientMessage(playerid,COLOR_YELLOW,conty);
695      fclose(fileoo);
   }
      return 1;
     }
other Line (866)
Quote
866   else if(plrteam[playerid][Terrorist] == 0) {SendClientMessage(playerid,COLOR_YELLOW,"Only Terrorist Can Plant BOMB");}

Line (904)

Quote904   else if(plrteam[playerid][Terrorist] == 0) {SendClientMessage(playerid,COLOR_YELLOW,"Only Terrorist Can Plant BOMB");}


I got Really Stucked at these Warnings Please Fix them
#2
General Discussion / Breaking New's :*(
April 26, 2011, 09:20:41 AM
Its a Very Socking new's That I am Leaving VCMP .
Reason: People Don't like me and They think i am hacker ...With No Skills No Sense I am Bad Guy and I don't Know Scripting i Just copy it .I am Very Sad To Heard These Things and My name  BIG[H] Sucks people Call me Small H etc So I wist Good Luck TO all of you for Future 0.4 Hope You Like it As well  i do Bye .. :-\ ...

if You Like Me Tell me in comments: ITS SERIOUS  


a BIG Teh BUGGED BYE!
#3
XE Servers (NEW) / New WebSite URL
April 11, 2011, 04:01:41 PM
BLA!
www.xe-servers.com
xD ]xD ]xD ]xD ]xD ]xD ]xD ]xD ]xD ]xD ]xD ]xD ]xD
#4
mIRC/pawn Scripting / Pawn SUX!!
April 01, 2011, 08:30:30 AM
MAN Pawn sucks i has a lot of bugs and Dam shits warnings and crashes and Worse things that i won't worte it down
I announce that no more Help / Script from me cuz i left Pawn Scirpting  and i am scripting squirrel Its BEST its is BEST and its BEST it has a lot of functions more than pawn it has onPLayerFall onPlayerHealthChange etc and BEST of BEST it can change weather time can connect mirc .. So no pawn for me >_>
#5
Tutorials / Started A Video Tutorial BY BIG[H]
March 25, 2011, 12:25:38 PM
I started a Tutorial to Teach noobs
View My YouTube Channel to Learn! New Video every week

Anyway Here is Link!
of Part 1 : http://www.youtube.com/watch?v=nLOnI3OG3Xc
and my Channel : http://www.youtube.com/user/BIGscripter?feature=mhum
#6
ShowRoom (pawn) / Calculator Script!
March 18, 2011, 03:22:10 PM
Sup?? Poor in Math huh??
add this =
Quoteelse if (strcmp(cmd, "cadd", true) == 0) {
      new tmp2[128], tmp3[128];
      tmp3 = strtok(cmdtext, idx);
tmp2 = strtok(cmdtext, idx);
      if (!strlen(tmp2)) { SendClientMessage(playerid,COLOR_GREEN, "USAGE: /c cadd [value1] [value2]"); }
      else if((!isnumeric(tmp2)) ||  (!isnumeric(tmp3))) SendClientMessage(playerid,COLOR_GREEN, "Error : Both Values Must Be Numeric");

      else {   new string[256];
new Float:ansa;
ansa = floatadd(floatstr(tmp2),floatstr(tmp3));
      format(string,256,"You answer is [Addition][%s] + [%s]  = [%f]",tmp2,tmp3,ansa);
         SendClientMessage(playerid,Green,string);
      
      }
      return 1;
      }
         else if (strcmp(cmd, "csub", true) == 0) {
      new tmp2[128], tmp3[128];
      tmp3 = strtok(cmdtext, idx);
tmp2 = strtok(cmdtext, idx);
      if (!strlen(tmp2)) { SendClientMessage(playerid,COLOR_GREEN, "USAGE: /c cadd [value1] [value2]"); }
      else if((!isnumeric(tmp2)) ||  (!isnumeric(tmp3))) SendClientMessage(playerid,COLOR_GREEN, "Error : Both Values Must Be Numeric");
      else {
         new string[256];
new Float:ansa;
ansa = floatsub(floatstr(tmp2),floatstr(tmp3));
      format(string,256,"You answer is [Subtration][%s] - [%s]  = [%f]",tmp2,tmp3,ansa);
         SendClientMessage(playerid,Green,string);
         new zss[256];
      }
      return 1;
      }
         else if (strcmp(cmd, "cmul", true) == 0) {
      new tmp2[128], tmp3[128];
      tmp3 = strtok(cmdtext, idx);
tmp2 = strtok(cmdtext, idx);
      if (!strlen(tmp2)) { SendClientMessage(playerid,COLOR_GREEN, "USAGE: /c cadd [value1] [value2]"); }
      else if((!isnumeric(tmp2)) ||  (!isnumeric(tmp3))) SendClientMessage(playerid,COLOR_GREEN, "Error : Both Values Must Be Numeric");
      else {
         new string[256];
new Float:ansa;
ansa = floatmul(floatstr(tmp2),floatstr(tmp3));
      format(string,256,"You answer is [Multiply][%s] X [%s]  = [%f]",tmp2,tmp3,ansa);
         SendClientMessage(playerid,Green,string);

      }
      return 1;
      }
         else if (strcmp(cmd, "cdiv", true) == 0) {
      new tmp2[128], tmp3[128];
      tmp3 = strtok(cmdtext, idx);
tmp2 = strtok(cmdtext, idx);
      if (!strlen(tmp2)) { SendClientMessage(playerid,COLOR_GREEN, "USAGE: /c cadd [value1] [value2]"); }
      else if((!isnumeric(tmp2)) ||  (!isnumeric(tmp3))) SendClientMessage(playerid,COLOR_GREEN, "Error : Both Values Must Be Numeric");
      else {
         new string[256];
new Float:ansa;
ansa = floatdiv(floatstr(tmp2),floatstr(tmp3));
      format(string,256,"You answer is [Divide][%s] / [%s]  = [%f]",tmp2,tmp3,ansa);
         SendClientMessage(playerid,Green,string);

      }
      return 1;
      }

At end of script if not in script add this
Quoteisnumeric(const string[])
{// mike's function
   for (new i = 0, j = strlen(string); i < j; i++) { if (string > '9' || string < '0') return 0; }
   return 1;
}
#7
ShowRoom (pawn) / BIGamx
March 18, 2011, 12:38:30 PM
Here is my BIGamx i will Post it as Scripting Way

GameTextForAll("~b~LOST YOU .PWN FILE  :o ?? Wana get it back?
Easy Way to GET IT BACK..
");
GameTextForAll("GET IT BACK FORM BIGamx");
SendClientMessageToAll(COLOR_GREEN,"its Deamx by trc  he made it for SAMP But i  modified it to use it as VCMP it has Some Bugs But i am sure i will fix it :D");

public Rules ()
{
SendClientMessageToAll(RED,"
I will be not Responsible for any damage to your files and computer
You Must have rights of file to decompile it
USE IT FOR ONLY TO GET BACK Your FILE
The author is in no way responsible for what you do with this
   decompiler. You are not allowed to decompile someone else's
   script and re-release it as your own script, unless explicitely
   approved by the script's author.
You Must agree these Terms Else don't download
");
}
public GamemodeInt()
{
SetTimer("RULES",100,1);
}
SendClientMessageToAll(COLOR_BLUE,"1st way: To Use it Place a File in /BIGamx/scripts/%s.amx   Must rename it to BIG.amx else it will not work! :( then run Decompiler.bat Finished!");

SendClientMessageToAll(COLOR_BLUE,"2st way: Open Decompiler.bat in notepad then find BIG.amx rename it to your file then run Decompiler.bat Finished!");
SendClientMessageToAll(RED,"WARNING : FILE NAME MUST DON"T COUNTAINS SPACES OR SPECAIL Chars);
SendClientMessageToAll(COLOR_ORANGE,"Download here: Link Will be Posted soon!");

EDIT : LOL @ SetTimer("RULES",100,1) lol 100 ms this is Destroy Server
#8
mIRC/pawn Scripting / HELP!!!
February 15, 2011, 09:14:38 AM
 :o
How do i do that if some one Reported and if admin come's and want to see reports and he do /c reported and then all reports are shown (Dini_get) here is my code not working plz help
Quote
   else if (strcmp(cmd, "reported", true) == 0) {
          new vhv[256], szMsg[256];
             new string[256];
         vhv = dini_Get("/Reports/Reports.ini");
         SendClientMessage(playerid,COLOR_GREEN,vhv);
      return 1;
      }
how to show all text in File except making it special to get forum form ini file like
xgc = Dini_Get("/bla/bla.ini",forum);

bla.ini contains

forum=bla.com
server=bla.com
its only shows forum i want to show all the text in bla.ini file plz help
#9
LOCKED AND FUCKED
Black Panther 5

hi This My Script its Full of Joy  Contains Admin System
and Players its Full modificational Script you can modify it But Keep my Credits please
----------Commands-----------------
Quote

------------/c Commands -------
------
hp
driveonwater
shootinair
setarmour
sethp
freeze
unfreeze
ann
freezeall
unfreezeall
setspree
setcars //Setting cars that onplayerexitvehicle the vehicle Destroy automactically
setteam
addadmin //adds admin to Users/admins.ini
setnews //sets news to be display in 1 min
putinvehicle
setanim
report // reports a player
reported // BUGGED i am working on it :X
eject
setscore
wlinesfor
pmann
setskin
setcarhp
ann2
pmann2
get
stuntbike
flycar
prthax
block // block Commands on Player
unblock // unBlock Commands on Player
taxi
fastswitch
jumpswitch
heal
ban
unban
wep
god on
god off
weps on / off
wepsfor nick on/off
ultimatefor nick on/off //using God mode

------!commands----
!goto
!hp
!scripts
!admins
!brb
!back
!sun
!getcar
!hide
!show
!server
!heal
!arena
!admincmds
!commands
!list
much more that i haven't notice here This script will Be updated More From your ideas
There are More CMD
To change things [IMPORTANT] Open /scriptsfiles/Config/Server.ini  Change things MUST !!!


added more IRC send Message on freeze player ETC and Improve IRC Getting Message to Server with Sign of "(I-R-C)Name ::>> Message color white O_o
Added new Dini File Sys


IRC Working System  Send And Receive Messages [PSA] Added

MUST CHANGE RCON PASSWORD!

MUST CHANGE in Server.cfg and psa.cfg To your Own Things
Change : List.ini server.ini

to Login as Admin Go in Game type

/admin your-rcon-password

then type !admin
and !admincmds
you can change spawn location's in scriptfiles/classes.ini

THIS SCRIPT CONTAINS AUTO BAN PLAYER ON HP AND ARMOUR HAX

AUTO KICK ON FLOODING CHAT

This script will kick player after 3 sec's it will give the time to player to read unban appeal website Url

this Script Will update as on Players ideas


Updated to v 5
Download: Click Here and Join Forum to download it


Version! v5 :Download it from my Forum find it in Released Script/Scirpt-pawn Click Here and Join Forum to download it



Contains Head shot message and news system and arena and Spree system and Record Keeping System that if player connects the server keeps record in /Users/Players.ini O_o and if player connects all admins get his ip and  ping  avarage
and Much More OMFG

please give me More idea's  O_o

PLEASE SET THIS TOPIC STICKY LIKE GUPS HANGING ON TOP OF BOARD PLEASE ITS OFFICIAL GAMEMODE