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.


Topics - Rodrigo

Pages: [1]
1
VC:MP Clans / [ASA] -- Assassins Academy --
« on: January 27, 2013, 08:45:26 pm »
[ASA] - Assassins Academy

"Are you ready for the recruit? We are waiting you at Assassins Academy Clan."

Name: Assassins Academy
Tags: [ASA] (full assassins) / [ASAh] (half-blood assassins)
Owner: [ASA]Rodrigo
Admins: None (yet)
Server: In Maintenance (Coming Soon)

Forum: www.asa-clan.comoj.com

All are welcome to a test, I usually play in the oficial servers (XE, for example).

2
mIRC/pawn Scripting / Help on adding cmds in a server
« on: January 05, 2013, 04:23:51 am »
Hello! :)

I use sql server and I have a script called: "cmds.nut" where I can find and edit all the commands of the server.

I've noticed that there isn't a /c wep command and I'm requesting your help to teach me how to add that command.

I'd like to add /c wep command and, if possible, /c spawnwep set...

This is a part of the script:
Code: [Select]
if ( cmd == "register" )
  {
   if ( status[ player.ID ].IsReg == true ) ePrivMessage( "[Error] - You're Already Registered!", player );
   else if ( !text ) ePrivMessage( "Syntax, /c " + cmd + " <Password>", player );
   else Register( player, text );
  }
  else if ( ( cmd == "commands" ) || ( cmd == "cmds" ) || ( cmd == "command" ) )
  {
      ePrivMessage( "Commands for Registered Users:", player );
  ePrivMessage( "/c register, login, stats, hp, armour, loc, script", player );
  ePrivMessage( "forum, goto, heal, fix, gotoloc, saveloc, nogoto", player );
  ePrivMessage( "server, admins, buyprop, sellprop, shareprop", player );
  ePrivMessage( "delshareprop, myprops, myshareprops, home", player );
  ePrivMessage( "mycars, mysharecars, buycar, sellcar, sharecar", player );
  ePrivMessage( "delsharecar, getcar, spree, level, cash", player );
  }
  else if ( ( cmd == "script" ) || ( cmd == "scripts" ) || ( cmd == "info" ) ) EMessage( ">> MaDKiLLeR's DM / RPG Script v1.0 by [VU_T]MaDKiLLeR." ), EMessage( "Credits: " + Credits );
  else if ( cmd == "server" ) EMessage( ">> Server: " + GetServerName() + " ModeName: " + GetGamemodeName() + ", MapName: " + GetMapName() + ", Slots: " + GetMaxPlayers() + "." );
  else if ( cmd == "forum" ) EMessage( ">> Forum: [ " + www.asa-clan.comoj.com + " ]" );
  else if ( cmd == "gotoloc" )
  {
      if ( !text ) ePrivMessage( "Syntax, /c " + cmd + " <Location Name>", player );
  else if ( player.Health < 50 ) ePrivMessage( "Your Health is To low..", player );
  else if ( !player.IsSpawned ) ePrivMessage( "You haven't spawned yet..", player );
  else if ( !CheckLoc( text ) ) ePrivMessage( "Invalid Location..", player );
  else
  {
     GotoLoc( player, text );
  }
  }
  else if ( cmd == "level" )
  {
      if ( !text ) PrivMessage( "Syntax, - /c " + cmd + " <Nick/ID>", player );
  else
  {
     local plr = GetPlayer( text );
if ( !plr ) PrivMessage( "Error - Invalid Player", player );
else if ( !status[ plr.ID ].IsReg ) PrivMessage( "The Player is not Registered..", player );
else PrivMessage( plr.Name + "'s Level:[ " + status[ plr.ID ].Level + " ]", player );
  }
  }

See yah! :)

3
mIRC/pawn Scripting / [HELP]Troubles in compiling Gups1.16
« on: August 29, 2012, 05:13:14 pm »
Hello!

I've just tried to compile GUPS1.16.pwn with Pawno and it gives me always the same warnings/errors:

Code: [Select]
(8) : error 018: initialization data exceeds declared size
(100) : warning 235: public function lacks forward declaration (symbol "OnFilterScriptInit")
105) : warning 235: public function lacks forward declaration (symbol "OnPlayerVersion")
(111) : warning 235: public function lacks forward declaration (symbol "OnPlayerConnect")
(178) : warning 235: public function lacks forward declaration (symbol "OnPlayerDisconnect")
(193) : warning 235: public function lacks forward declaration (symbol "OnPickedUp")
(216) : warning 235: public function lacks forward declaration (symbol "OnPlayerSpawn")
(240) : warning 235: public function lacks forward declaration (symbol "OnPlayerDeath")
(306) : warning 235: public function lacks forward declaration (symbol "OnPlayerRequestClass")
(315) : warning 235: public function lacks forward declaration (symbol "OnGameModeInit")
(351) : warning 217: loose indentation
(353) : warning 217: loose indentation
(358) : warning 235: public function lacks forward declaration (symbol "OnPlayerCommandText")
(367) : warning 217: loose indentation
(372) : warning 217: loose indentation
(373) : warning 217: loose indentation
(392) : warning 217: loose indentation
(397) : warning 217: loose indentation

I only changed the name of the game mode... Or tried to change it. :/

4
mIRC/pawn Scripting / [HELP] Creating a server by the 0 [HELP]
« on: July 15, 2012, 06:18:11 pm »
Well, I'm a old VCMP player and now I would like to create a clan and a server! (Not just for fun) I think that VCMP needs more activity and I'd like to help creating a server and a clan, but I'll need your help. Can you help me?

/ Help Topics /

1. I would like to have a simple gamemode (with the basic commands already) to be edited.
2. Which programs do I have to use to edit a gamemode?
3. What's the best free forum hoster to make a forum to the clan? (I was thinking in Forumeiros)
4. How to let the server 24h online? (this can be the last step to be treated).


/ The End /

I'll continuing posting topics to you, if possible, help me! :)

Pages: [1]